Disable Cut & Paste in views?

Is there a way to prevent a user from cutting and pasting documents in a view? ( without taking away editor-author access in ACL )

Subject: Disable Cut & Paste in views?

Maybe the database script “QueryDocumentDelete” can help you with the cut problem? The paste - I am not sure. But - you have a “QueryPaste” event in the view as well - maybe you can handle your action there.

Regards,

Rune Carlsen

Founder Dominozone

http://www.dominozone.net

Subject: RE: Disable Cut & Paste in views?

My recommendation would be to use the author and readers fields to determine who will be able to cut documents.

The second recommendation is to use the querypaste in the view to - continue = False.

/Anders

Subject: Disable Cut & Paste in views?

Set continue = False in the appropriate Query events…

Stephen Lister

Subject: Disable Cut & Paste in views?

To prevent deletions, if you for some reason don’t want to handle this in the ACL, you could put some code in the “QueryDocumentDelete” event of the “Database Script” design element and use whatever logic you like to determine if this person should or should not be able to delete (cut) this document.