03-12-2012 08:08 AM
I would like to disable the worklist below the navigation tree, and I would like to manage my own list there.
Can you help me?
03-12-2012 08:24 AM
The worklist and clipboard fragment are initialized by the org.nuxeo.ecm.webapp.documentsLists.DocumentsListsService/list extension point.
If you want to add a list, you just have to contribute a new list into this extension point with the category CLIPBOARD:
<extension target="org.nuxeo.ecm.webapp.documentsLists.DocumentsListsService"
point="list">
<documentsList name="NAME">
<category>CLIPBOARD</category>
<imageURL>/icons/myicon.gif</imageURL>
<title>theNameOfMyList</title>
<persistent>IfTheListIsStoredIntoTheRepositoryOrJustInTheSession</persistent>
</documentsList>
</extension>
If you want to add Actions below the list, create them into the NAME_LIST category, here.
And if you want to populate or use this list in automation you can look what we did:
And if you want to remove, you just have to disable lists:
<extension target="org.nuxeo.ecm.webapp.documentsLists.DocumentsListsService "
point="list">
<documentsList name="CLIPBOARD" enabled="false"/>
<documentsList name="DEFAULT" enabled="false"/>
</extension>
03-12-2012 08:24 AM
The worklist and clipboard fragment are initialized by the org.nuxeo.ecm.webapp.documentsLists.DocumentsListsService/list extension point.
If you want to add a list, you just have to contribute a new list into this extension point with the category CLIPBOARD:
<extension target="org.nuxeo.ecm.webapp.documentsLists.DocumentsListsService"
point="list">
<documentsList name="NAME">
<category>CLIPBOARD</category>
<imageURL>/icons/myicon.gif</imageURL>
<title>theNameOfMyList</title>
<persistent>IfTheListIsStoredIntoTheRepositoryOrJustInTheSession</persistent>
</documentsList>
</extension>
If you want to add Actions below the list, create them into the NAME_LIST category, here.
And if you want to populate or use this list in automation you can look what we did:
And if you want to remove, you just have to disable lists:
<extension target="org.nuxeo.ecm.webapp.documentsLists.DocumentsListsService "
point="list">
<documentsList name="CLIPBOARD" enabled="false"/>
<documentsList name="DEFAULT" enabled="false"/>
</extension>
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.