在CRM 2015中禁用表单上的所有字段

时间:2015-01-27 11:20:58

标签: javascript c# crm

嗨我希望使用插件或Jscript

禁用CRM 2015中表单上的所有字段

1 个答案:

答案 0 :(得分:13)

Xrm.Page.data.entity.attributes.forEach(function (attribute, index) {    
    var control = Xrm.Page.getControl(attribute.getName());
    if (control) {
        control.setDisabled(true)
    }
});