Wednesday 20 October 2021

Make form read only using JavaScript in D365 CE

 

Make form read only using JavaScript in D365 CEedIn

WhatsAppFacebookEmailTwitter

In this blog, we will learn how to make the entire form read-only using JavaScript in D365 CE(CRM).

Code:

var formCustomizations = {
    disableForm: function (executionContext) {
        let formContext = executionContext.getFormContext();

        let formControls = formContext.ui.controls;

        formControls.forEach(element => {
            if (element.getName() != "" && element.getName() != null) {
                element.setDisabled(true);
            }
        });

    }
}

No comments:

Post a Comment

Use Word templates to create standardized documents

  Use Word templates to create standardized documents In this article Step 1: Create a Word template Step 2: Enable the Developer tab Import...