The new SDK for Dynamics CRM 2013 is out (see previous post for the link), and a few calls stand out when working with JavaScript: getClient instead of using the old isOutlookClient now we have more flexibility to determine the client. the returned values include Web Outlook Mobile use as follows: context.client.getClient(); Pay attention to... Continue Reading →
Dynamics CRM 2013 – new in field customization
I’ve got to start by stating: I like what I see… Let’s take a Phone field, on the Contact form. You will see a new tab called Business Rules. Go to it :) Click on New, and create a new rule to check if the field contains data. Bring a message to the user if... Continue Reading →
JScript Namespacing
I’ve been asked recently about namespacing in JScript, if I use it, and how I use it. This is a loaded question, with no simple answer. I probably never paid too much attention to all the details around this topic, and I am guilty of mixing styles and sometimes not even using namespacing. I guess... Continue Reading →
Formatting postal codes for US and Canada
For the sake of standardizing the format for all system postal codes, I have implemented the following script to re-format the user input of postal codes for both US and Canada. The purpose is to take the user’s input, and re-arrange it to follow a standard format. The comments are self-explanatory. // Function to format... Continue Reading →
Scripting the Quote Product form
You might be reading this topic, and think it’s just scripting, and just like any other form. What’s different? Now, most fields we can script against without a problem. But let’s focus on the Extended Amount field. There is a system calculation that takes place, and if you try to enable the field for editing... Continue Reading →
