Thursday, 29 July 2021

execution context javascript

  function versteckeFeld(executionContext){

        var formContext = executionContext.getFormContext();

        if (formContext.getAttribute("salutation").getValue() == null)
        {
            var name = formContext.ui.controls.get("new_geschlecht");
            name.setVisible(false);
        }
        else 
        {
            var name = formContext.ui.controls.get("new_geschlecht");
            name.setVisible(true);
        }
    }
var controls = Xrm.Page.ui.controls.get(); //
for (var i in controls) {
var control = controls[i];
if (control.getName="fieldAttributeName") {
control.setDisabled(false);
}
}

No comments:

Post a Comment

How to construct a Dataverse record’s dynamic URL with Power Automate

  Sometimes it can be required/useful to include a URL to a record, for example when creating a task/email that is regarding the parent reco...