function MarkAllFieldReadOnly() {// this function will make whole form fields readonly
Xrm.Page.ui.controls.forEach(function (control, index) {
try{
control.setDisabled(true);
}
catch (e)
{
}
});
}
Xrm.Page.ui.controls.forEach(function (control, index) {
try{
control.setDisabled(true);
}
catch (e)
{
}
});
}
No comments:
Post a Comment