Friday, March 18, 2011

Adding and Deleting Values from CRM picklist using Javascripts

Adding a value to a CRM Picklist 
document.getElementById('fieldname').AddOption('Test', 3);

Deleting a value from a CRM Picklist 
document.getElementById('fieldname').DeleteOption(2);

Retrieving Calendar of a Bookable Resource in Dynamics

There are occasions where we need to retrieve working days and working times of a resource in Dynamics grammatically. This is quite possible...