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

Identify all the cloudflows on a particular entity along with its messages

  The easiest way to identify the flows that trigger on a particular entity with its messages is to run a SQL query using the sql4cds tool i...