Hello,
I am new to the Dynamics CRM field and am trying to work with JS on Dynamics CRM. I am trying to add a simple event where am trying to disable the credit limit on contact entity. My code is the following which is called on the OnLoad event.
function DisableCreditLimit ()
{
Xrm.Page.getControl(“Creditlimit”).setDisabled(true);
}
However, am getting an error "DisableCreditLimit is not defined at eval(eval at RunHandlerInternal)".
How do I solve this issue?
Working on Online 2015 Update 1 version.
*This post is locked for comments