MSCRM upgradation and mandatory fields, asterisks
In MSCRM 3.0 , it does not automatically set the asterisk if fields are set to mandatory using the below clientside script
crmForm.SetFieldReqLevel("", 1);
we need to explicitly append the asterisk using the client side script,
crmForm.all..innnerText += "*";
When we upgrade from MSCRM 3.0 to MSCRM 4.0, it shows two asterisks appended to the label. It is because MSCRM 4.0 automatically appends the asterisk when you call
crmForm.SetFieldReqLevel("", 1);
After upgradation, we need to remove the line of code --- crmForm.all..innnerText += "*";
crmForm.SetFieldReqLevel("
we need to explicitly append the asterisk using the client side script,
crmForm.all.
When we upgrade from MSCRM 3.0 to MSCRM 4.0, it shows two asterisks appended to the label. It is because MSCRM 4.0 automatically appends the asterisk when you call
crmForm.SetFieldReqLevel("
After upgradation, we need to remove the line of code --- crmForm.all.
Comments
Post a Comment