By admin, on September 30th, 2008%
There are some useful crmForm customization skills which I want to share:1. Change a filed label style/* change new_button field label style */if (crmForm.all.new_button != null){ var field = crmForm.all.new_button_c; field.style.fontWeight = ‘bold’;… . . . → Read More: Customize the crmForm
By admin, on September 18th, 2008%
There is a question on Microsoft CRM Forum asking how to: Double Click EmailAddress to Open in OutlookI think it’s worth to bring it here because it’s also demonstrate how to send parameters in attachEvent method, so here is the answer:/* Double Click … . . . → Read More: Double Click EmailAddress to Open in Outlook
By admin, on September 6th, 2008%
I was curious about how to use FilteredView in the CrmImpersnator class for a IFD(Internet-Facing Deployment) solution? Thanks to David Jennaway who gave me a clue.Ok, the reason for that is because I’m building a CRM dashboard for an On-Premise/IFD CR… . . . → Read More: FilteredView and CrmImpersonator?!