Hi,
I have tried this script on load event but field is not disabled. Actually I want to disable field by default in process.
function hide() { Xrm.Page.getControl("header_process_new_internalreviewresult").setDisabled(true); }
Hello,
That is not possible in supported way for CRM 2013. That possibility appeared in CRM 2015.
Dynamics CRM MVP/ Technical Evangelist at SlickData LLC My blog
function hide() { var c = Xrm.Page.getControl("header_process_new_internalreviewresult"); if (c != null) { c.setDisabled(true); } }
Regards Faisal