在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">
时有效,在创建过程中无效。
答案 0 :(得分:0)
我不知道您在做什么,因为您还没有包含封闭的“”元素。如果要更改新节点存在的形式,请使用“模型类型”评估器,例如:
<config evaluator="model-type" condition="sc:whitepaper">
“节点类型”评估器用于现有节点。
如果这不符合您的要求,您可以看看Uploader Plus add-on。