是否可以在Alfresco 5.2共享文档(cm:content)创建过程中显示标记表单?
我在share-form-config.xml中搜索了一个例子,我没有找到答案。
我试过了
<config evaluator="model-type" condition="myco:myType">
<forms>
<form>
<field-visibility>
<!-- ... -->
<!-- tags and categories -->
<show id="cm:taggable" for-mode="edit" force="true" />
<!-- ... -->
</field-visibility>
<appearance>
<!-- ... -->
<field id="cm:taggable">
<control>
<control-param name="compactMode">true</control-param>
<control-param name="params">aspect=cm:taggable</control-param>
<control-param name="createNewItemUri">/api/tag/workspace/SpacesStore</control-param>
<control-param name="createNewItemIcon">tag</control-param>
</control>
</field>
<!-- ... -->
</appearance>
</form>
</forms>
但它只能在编辑表单中使用(使用<config evaluator="node-type" condition="myco:myType">
,而不是在创建期间)。
我不知道你在做什么因为你没有包含封闭的“”元素。如果要更改新节点的表单,请使用“模型类型”评估程序,如:
<config evaluator="model-type" condition="sc:whitepaper">
“节点类型”评估器用于现有节点。
如果这不符合您的要求,您可以查看Uploader Plus add-on。