function
ConvertToLink(fldName) {
if
(Xrm.Page.getAttribute(fldName).getValue()!=
null
)
{
var
content = Xrm.Page.getAttribute(fldName).getValue();
var
btn =
"<a href='javascript: void(0);' onclick=\"window.open(\'"
+ content +
"\', \'windowname1\', \'width=600, height=650\'); return false;\" style='color:blue;text-decoration:underline !important'>"
+ content +
"</a>"
;
var
ctrl = Xrm.Page.ui.controls.get(fldName)._control;
// Add the new button
ctrl.get_element().innerHTML += btn;
// Hide the textbox
ctrl.get_element().firstChild.style.display = 'none';
}
}
*This post is locked for comments