Disabling "Copy" button
20:00 Sep 05, 2014
21:04 Sep 05, 2014
Hello Richard!
You can add replacing module and add:
define("LeadSectionV2", ["terrasoft", "GeneratedWebFormUtilities"],
function(Terrasoft, GeneratedWebFormUtilities) {
return {
entitySchemaName: "Lead",
methods: {
init: function() {
this.callParent(arguments);
document.body.oncopy = function() { returnfalse; };
}
}
};
});
Show all comments