To enable the right mouse button on a specific page put:
javascript:void(document.oncontextmenu=null);
in the addressbar of your window.
To enable the right mouse button on a specific page put:
javascript:void(document.oncontextmenu=null);
in the addressbar of your window.
If you want to copy the value (text) of a lookup field to a text box, you can use this code below with a lookup field called – new_lookupid and a Text field (nvarchar or ntext) called – new_textfield.
var lookup = crmForm.all.new_lookupid.DataValue;
if (lookup[0] !=null)
{
var theText = lookup[0].name;
}
crmForm.all.new_textfield.DataValue = (theText);
crmForm.all.new_textfield.ForceSubmit = true;
We have noticed that it is not possible to bulk edit fields with onChange scripts enabled on the field.
Microsoft descibes a workaround for this in their article: The fields that have the OnChange event enabled are unavailable in the Edit Multiple Records window in Microsoft Dynamics CRM 4.0.
Application BETA Client Side Scripting Customization ISV Microsoft Dynamics CRM 3.0 Microsoft Dynamics CRM 4.0 Microsoft Dynamics CRM 2011 Online Point & Click
WP Cumulus Flash tag cloud by Roy Tanck requires Flash Player 9 or better.