Another way of loading certain CRM Views into an IFRAME on the main form

Since every CRM View has its own GUID and can be launched using the Advanced Find out-of-the-box functionality, you can follow several easy steps to load what view you want (with whatever additional filters you want) in a certain IFRAME available on the crmForm.Here’s the scenario: you wanna display your active contacts (My Active Contacts… Continue reading Another way of loading certain CRM Views into an IFRAME on the main form

An easier way to hide or show a certain field in CRM

Simply use the function below: // Shows or hides a certain fieldfunction HandleField(field, display) { document.getElementById(field+”_c”).style.display = display; document.getElementById(field+”_d”).style.display = display;}/* Calling */HandleField(“fieldid”, “inline”); // show inlineHandleField(“fieldid”, “block”); // show blockHandleField(“fieldid”, “none”); // hide

Generating tooltips on certain events

A tooltip is a small box of explanatory text (usually on yellow background) that appears when the mouse pointer is held over a button or other interface element.In Microsoft Dynamics CRM we can define constraints (masks) on certain fields. It is desired that the user is well informed about the text’s format, in real time,… Continue reading Generating tooltips on certain events