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 Call an Action through Power Automate(MS Flow)

  Introduction As Microsoft is providing us more flexibility with Power Automate (MS Flow), recently we found that now we can call the Actio...