MSCRM - Disable all fields using javascript - Make fields read only
Views (10534)
Hello all,
Below is a simple JavaScript function that can disable all fields in a form by iterating through controls.
The below code is mobile(MoCA) compatible, so feel free to use it even on mobile based JavaScript development.
Below is a simple JavaScript function that can disable all fields in a form by iterating through controls.
The below code is mobile(MoCA) compatible, so feel free to use it even on mobile based JavaScript development.
function disableAllFields() {
Xrm.Page.ui.controls.forEach(function (control, i) {
if (control && control.getDisabled && !control.getDisabled()) {
control.setDisabled(true);
}
});
}
This was originally posted here.

Like
Report
*This post is locked for comments