11 Mar
2014

When your Dynamics CRM 2011 Online organization has been upgraded to Dynamics CRM 2013, you may find that some of your form javascript no longer works. This is normally caused by fields being added to the header section of the form in the previous version. The solution is a very simple one. Open the form…

2 Oct
2012

A response from an OData query may give back a money value that you would like to put into a field on a CRM 2011 form. So to call and retrieve data from another entity using OData take a look here. In the response section of code you will need to manipulate the value that…

15 Aug
2012

The following javascript code can be added to lookups in order to get more data from related records. So lets create a function that takes the lookup value and then queries the CRM. In this example below we have a lookup to a project record from an entity called Timeslips. function GetProjectInfo() { //Getting the…

2 Aug
2012

First we need to create a simple web resource either in the system customization or in a separate solution. So click on web resources and click new. Name the web resource appropriately and then select ‘Script (Jscript)’ from the type drop down. Now you can add/edit the script in three ways. Use the edit button…