cancel
Showing results for 
Search instead for 
Did you mean: 

How to 'Disable' the copy option in Company home s

swapneel
Champ in-the-making
Champ in-the-making
Hi guys…
I want to upload some files into Company Home space..But i dont want anybody to copy neither the space nor the content….So can we disable the COPY option completely for the company home space…
2 REPLIES 2

chandu7ee
Champ in-the-making
Champ in-the-making
I need this kind of help., how to disable such type of copy paste options.

chandu7ee
Champ in-the-making
Champ in-the-making
Hey i got the solution., here is the code to add in web-client-config-custom.xml ., it will hide copy and cut the actions  for documents and space.



<config>
<actions>
<action-group id="space_browse">
<show-link>false</show-link>
<action idref="cut_node" hide="true" />
<action idref="copy_node" hide="true" />
</action-group>

<action-group id="browse_actions_menu">
<show-link>false</show-link>
<action idref="cut_node" hide="true" />
<action idref="copy_node" hide="true" />
</action-group>

<action-group id="doc_details_actions">
<action idref="cut_node" hide="true" />
<action idref="copy_node" hide="true" />
</action-group>

<action-group id="space_details_actions">
<action idref="cut_node" hide="true" />
<action idref="copy_node" hide="true" />
</action-group>

<action-group id="document_browse">
<show-link>false</show-link>
<action idref="cut_node" hide="true" />
<action idref="copy_node" hide="true" />
</action-group>

<action-group id="document_browse_menu">
<action idref="cut_node" hide="true" />
<action idref="copy_node" hide="true" />
</action-group>

<action-group id="space_browse_menu">
<action idref="cut_node" hide="true" />
<action idref="copy_node" hide="true" />
</action-group>
</actions>
</config>