Enable Right Mouse

To enable the right mouse button on a specific page put:

javascript:void(document.oncontextmenu=null);

in the addressbar of your window.

Tagged as: , ,

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars (No Ratings Yet)
Loading ... Loading ...

Copying lookup text to text field

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;
Tagged as: ,

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars (No Ratings Yet)
Loading ... Loading ...

Bulk Edit

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.

Tagged as: ,

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars (No Ratings Yet)
Loading ... Loading ...
Page 5 of 9« First...34567...Last »
  • Recent Posts

  • Ratings

  • Archive

  • Admin

  • Cloud

  • Microsoft Certified Professional

  • About & Contact