在 CRM 2015 中禁用表单上的所有字段
Disabling all Fields on a Form in CRM 2015
嗨,我想使用插件或 Jscript 在 CRM 2015 中禁用表单上的所有字段
Xrm.Page.data.entity.attributes.forEach(function (attribute, index) {
var control = Xrm.Page.getControl(attribute.getName());
if (control) {
control.setDisabled(true)
}
});
嗨,我想使用插件或 Jscript 在 CRM 2015 中禁用表单上的所有字段
Xrm.Page.data.entity.attributes.forEach(function (attribute, index) {
var control = Xrm.Page.getControl(attribute.getName());
if (control) {
control.setDisabled(true)
}
});