This is a little reminder for those who are making alerts and notifications in another language. If you ever see your accents or other foreign…
Just another Xrm blog by Nicolas Plourde
This is a little reminder for those who are making alerts and notifications in another language. If you ever see your accents or other foreign…
Even if I use Chrome for most of my development (#chromeisawesome), all my clients require their CRM 2016 to run with IE. http://social.technet.microsoft.com/wiki/contents/articles/23156.list-of-optimal-local-machine-and-internet-explorer-settings-for-microsoft-dynamics-crm.aspx This is the…
Hi folks, I found out an elegant way to set a lookup. Here’s the old way: var lookup = new Array(); lookup[0] = new Object(); lookup[0].id = ‘fc62d5f4-a589-452d-b134-aaa080c0d75a’; lookup[0].entityType = ‘contact’; lookup[0].name = ‘Nick Plourde’; Xrm.Page.getAttribute(‘primarycontactid’).setValue(lookup); Here’s the nicer…