1
AlfrescoでAspectプロパティのデフォルト値を設定するにはどうすればよいですか?それは制約ですか、それともプロパティ自体に属性がありますか?AlfrescoのAspectプロパティのデフォルト値を設定するにはどうすればよいですか?
これが私の財産です:
<constraint name="ac:Priority_Options" type="LIST">
<parameter name="allowedValues">
<list>
<value>Low</value>
<value>Medium</value>
<value>High</value>
</list>
</parameter>
</constraint>
<property name="ac:propPriority">
<title>Priority</title>
<type>d:text</type>
<multiple>false</multiple>
<constraints>
<constraint ref="ac:Priority_Options" />
</constraints>
</property>