cancel
Showing results for 
Search instead for 
Did you mean: 

Enable/disable WorkList, Clipboard?

klebervz_
Confirmed Champ
Confirmed Champ

Hello,

how do I disable some options WorkList?

For example Paste in current folder , Export to XML

1 REPLY 1

Greg_Drayon
Star Contributor
Star Contributor

Old question, but if anyone were to need an answer:

These "options" are buttons, therefore they are actions, defined by the action extension point.

The "Paste in current folder" is defined by this action:

<action icon="/icons/action_paste_all.gif" id="WORKLIST_PASTE" label="command.clipboard.pasteAll" link="#{clipboardActions.pasteWorkingList}">
      <category>DEFAULT_LIST</category>
      <category>CLIPBOARD_LIST</category>
      <filter-id>canPasteCurrentWorkList</filter-id>
    </action>

To disable it, two possibilities:

  • Use the "enabled" attribute for the "action" tag (<action enabled="false" ...) if you need it to be completely disabled.
  • Add it another filter either with a condition implying no one can see the button, or with specific conditions if you need to only partially disable it.

For the other options, you just have to find the right action.

Getting started

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.