I ran into this problem today. I wanted to use the Quick Create form and do some custom validations in JavaScript. I could of done…
Just another Xrm blog by Nicolas Plourde
I ran into this problem today. I wanted to use the Quick Create form and do some custom validations in JavaScript. I could of done…
Hi folks, Today, I’m sharing a fix for a bug I found in my CRM. Basically, I opened the Phone Call form and found out a…
Hi folks, Today, I found a new bug in CRM. Context I have a form with two sections. Under some circumstances, I show one and…
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…
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…