Reputation: 997
I want to create Two different create folder options in alfresco menu create menu with my custom types.
can anyone help me, how can i achieve this.
Thanks in advance.
Alfresco Version 5.0.d
Upvotes: 0
Views: 271
Reputation: 198
In share-config-custom.xml type following:
<config evaluator="string-compare" condition="DocumentLibrary">
<create-content>
<content id="newFOlderId" mimetype="text/plain" label="newLabel" itemid="cm:folder" icon=""/>
</create-content>
</config>
itemid - use your custom type
Upvotes: 1