Tag Archives: Disable a form control

How to disable a form control in Dynamics CRM 2011 using Javascript

To disable a form control in Dynamics CRM 2011 using Javascript try below code: var control = Xrm.Page.ui.controls.get(“fieldname”);// like new_age control.setDisabled(true);

Posted in MS CRM 2011 | Tagged , , | 1 Comment