Disabling "Copy" button

Hello!

How can I disable copy button?

File attachments

Like

1 comments

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