//禁用
Xrm.Page.getControl("new_name").setDisabled(true);
//启用
Xrm.Page.getControl("new_name").setDisabled(false);
/**
* 禁用字段
* */
disableAll: function () {
Xrm.Page.ui.controls.forEach(function (control) {
var controlType = control.getControlType();
if (controlType != "iframe" && controlType != "webresource" && controlType != "subgrid" && controlType != "searchwidget" && controlType != "kbsearch") {
control.setDisabled(true);
}
});
},
/**
* 解锁字段
* */
availableAll: function () {
Xrm.Page.ui.controls.forEach(function (control) {
var controlType = control.getControlType();
if (controlType != "iframe" && controlType != "webresource" && controlType != "subgrid" && controlType != "searchwidget" && controlType != "kbsearch") {
control.setDisabled(false);
}
});
}