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

Git Basic working