13. Dezember 2012 09:33
if (crmForm.all.remote!= null)
{
crmForm.all.remote.style.color = '#0000FF';
crmForm.all.remote.style.textDecorationUnderline = true;
crmForm.all.remote.style.fontWeight = 'bold';
var folderunc = crmForm.all.remote.DataValue;
{
crmForm.all.remote.ondblclick = function()
{
var wshell;
wshell = new ActiveXObject("WScript.Shell");
wshell.Run("explorer /e, /root, " +folderunc);
}
}
}
13. Dezember 2012 11:08
13. Dezember 2012 11:44
13. Dezember 2012 12:32
13. Dezember 2012 15:09
Xrm.Page.ui.controls.get("remote")._control.get_element().firstChild.style.color = '#0000FF';
Xrm.Page.ui.controls.get("remote")._control.get_element().firstChild.style.textDecorationUnderline = true;
Xrm.Page.ui.controls.get("remote")._control.get_element().firstChild.style.fontWeight = 'bold';