Microsoft Dynamics CRM 4.0 Removing commas in integer field September 2, 2010
Posted by jarrettexpertcrm in Microsoft CRM General.Tags: crm, crm tips, Dynamics Four, Dynamics4, jscript, microsoft crm, Microsoft CRM 4.0, Removing Commas, Removing commas jscript
4 comments

Sometimes it is necessary to have int fields without the commas. Place the following code onload:
if(crmForm.all.fieldname != null && crmForm.all.fieldname.DataValue != null)
{
crmForm.all.fieldname.value = crmForm.all.fieldname.DataValue;
}
Thats all it takes. Enjoy!
For more information about Dynamics Four or to contact us please visit http://www.dynamics4.com
