Alfresco は、複数の値を許可するモデル プロパティをサポートしています。
<aspect name="aspectName">
<title>The Aspect Title</title>
<properties>
<property name="propname">
<type>d:text</type>
<multiple>true</multiple>
</property>
</properties>
</aspect>
次のshare-config-custom.xml
スニペットは、このプロパティを単一のテキスト フィールドとしてレンダリングします。
<config evaluator="aspect" condition="aspectName">
<forms>
<form>
<appearance>
<field id="propname" />
</appearance>
</form>
</forms>
</config>
プロパティの複数の値を編集できるコントロールをレンダリングする構成オプションはありますか?
そうでない場合、そのようなコントロールをレンダリングする方法はありますか?