September 5, 2016

Dependent OptionSet Generator - Overview - Part 1

Some days ago I released a new Dynamics CRM tool called Dependent OptionSet Generator.As the name suggests it helps to create and update dependent OptionSets, one of the possible approaches to filter data inside CRM UI. Scott Durow wrote an overview about this argument on his blog: "Option-Set, Lookup or Autocomplete", it's very useful if you plan to use dependent OptionSets in order to know the pro and cons of this approach. I want to thank Scott not only for his post but because he found the time to meet me when I was in London a couple of months...

September 3, 2016

Passing Arrays to JavaScript Web Resources as parameter

Despite the availability of Business Rules, JavaScript is still an important way to customize Dynamics CRM UI, especially in complex scenarios (or when you just need to hide a section). If you ever need to pass an Array as parameter inside the Event Handler form, you can declare it with the square brackets or using the Array keyword: // square brackets [1, 2, 3, 4 ,5] // Array keyword new Array(1, 2, 3, 4, 5) CRM Event Handler: As example we...