我创建了一个自定义露天模型,它有52种类型的自定义对象,我想在“创建”菜单下拉列表中显示。 52个选项看起来有点混乱,所以我希望我可以将它们组织到创建的子菜单中。
E.g。
Create
> Type A
> Object Type 1
> Object Type 2
> Type B
> Object Type 3
> Object Type 4
现在我的配置看起来像这样:
<config condition="DocumentLibrary" evaluator="string-compare">
<create-content>
<content icon="object-type-1" id="plain-text" itemid="ancoat:objectType1" label="Object Type 1" mimetype="text/plain"/>
<content icon="object-type-2" id="plain-text" itemid="ancoat:objectType2" label="Object Type 2" mimetype="text/plain"/>
<content icon="object-type-3" id="plain-text" itemid="ancoat:objectType3" label="Object Type 3" mimetype="text/plain"/>
<content icon="object-type-4" id="plain-text" itemid="ancoat:objectType4" label="Object Type 4" mimetype="text/plain"/>
</create-content>
</config>
是否可以选择每个内容选项应显示在哪个子菜单上?
答案 0 :(得分:0)
据我所知,这不可能通过share-config,但你可以重写toolbar.js,它负责渲染菜单。请参阅此链接以获取示例:
https://heshawa.wordpress.com/alfresco-create-from-template-menu-arrange-with-sub-menues/