While browsing for infrastructure related information, I found this white paper on TechNet. I like how it’s structured together: http://technet.microsoft.com/en-us/library/hh413200.aspx Thumbs up to the authors! Enjoy!
Microsoft Dynamics CRM 2011 Scripting Cookbook – my book is almost here
After a few long months, my book project is finally coming close to it’s end. After a relatively long break from blogging, I should have more spare time now to get involved in some new projects and community events. It’s been quite an experience writing a book. I was able to pull my thought together... Continue Reading →
Interesting Form and Workflow behavior
I’ve run into this situation recently, and I would think this is a bug. Let’s say you are a System Customizer, and you have a read-only form and an edit form for an entity, say Account. Now you try to create a Workflow for Accounts, and when you get to add an Update Record step,... Continue Reading →
JScript – what changed on this form?
Every now and then, if your scripts are performing form changes, and you try to navigate without saving, you will be prompted to save. But what if you want to see exactly what was changed on a large form? The following function can show you the modified fields: function checkIsDirty() { var _mesage =... Continue Reading →
Form Type and JScript
The following form types are available in Dynamics CRM 2011: Value Form Type 0 Undefined 1 Create 2 Update 3 Read Only 4 Disabled 5 Quick Create (Deprecated) 6 Bulk Edit 11 Read Optimized To get the Form Type in JScript, use the following syntax: var _formType = Xrm.Page.ui.getFormType();