Make All Fields ReadOnly in CRM Form

Standard

Some case you want to set read only for all field in the forms. It will take time to set field by field. This is small tip for marking all field as read only in MS CRM form.

/// <reference path=”rbei_PACrm.Sdk.js” />

/// <reference path=”../PACRM2011/XrmPageTemplate.js” />

function MarkAllFieldReadOnly() {

Xrm.Page.ui.controls.forEach(function (control, index) {

try{

control.setDisabled(true);

}

catch (e)

{

}

});

}

 

Hope it will be useful for someone.

 

Entering to xRM World Part 6 -Metadata & Data model

Standard

Microsoft Dynamic CRM has been released with built-in functions that help customer for managing their customers and automation processes, but requirement of enterprises are unlimited, there are many specific requirement require you to create new table, new field to adapt for your business.  Continue reading

Entering to xRM World Part 2 – Configuration

Standard

Continue for Entering to xRM World, this post will write about configuration of Microsoft Dynamic CRM, you can read part 1 here.

Data Configuration is very important to LoB Application, your system cannot run if it has been not configured master data. For example, you deploy Accounting system, it forced you have to configure Accounting number, Currency Rating…, if you deployed Inventory system, you have to configure Location, Product,…How about Microsoft Dynamic CRM?
Continue reading

Tools for new members in Microsoft Dynamic CRM.

Standard

In fact, Microsoft has been released many tools for developer, but sometime we forgot it or use another tools which developed by third parties, maybe these tools are better, are more flexible, but it is very important to choose which one is the best. According to me, if you are new member in CRM, before you start with third party tools, you should know how many tools that Microsoft release for developer. From version of CRM 2013, 2015, and 2016, you can see them at “Your folder path”\SDK\Tools. Continue reading