Welcome to my old Blogspot blog!
You can read this post on our new website: Read this post on our new website
Code Snippet for making all form fields read only.
function makeFieldsReadOnly() {
var controls = Xrm.Page.ui.controls.get();
for (var i in controls) {
var control = controls[i];
if (control.getDisabled && control.setDisabled && !control.getDisabled()) {
control.setDisabled(true);
}
}
}
No comments:
Post a Comment