Hi All,
How can we restrict the user to paste the documents in the view thru ACL?
Thanks in advance,
Kamal
Hi All,
How can we restrict the user to paste the documents in the view thru ACL?
Thanks in advance,
Kamal
Subject: Paste the document
I don’t think you can do that in the ACL. Or, I should clarify, in the ACL alone. You might be able to do it by having a computed field on the form that is set based on a user role. For example, create a role in the ACL called allowPaste, then create a computed field on your form called $KeepPrivate with the formula:
@If(@IsNotMember(“[allowPaste]”;@UserRoles); “1”; “”)
$KeepPrivate is the field that is set if you check the Disable Printing/Forwarding/Copying to Clipboard box on the security tab of the form design. By doing it programmatically, you’re allowing that property to be set based on a user’s access.