function OnCrmPageLoad()
{
ConvertControlToLabel( "ControlId");
}
function ConvertControlToLabel( controlId )
{
var control = document.getElementById( controlId );
if( control )
{
control.Disabled = true;
control.style.border = "0px";
}
}
OnCrmPageLoad();
So Long, and Thanks for All the Fish
2 years ago
2 comments:
Hello;
My name is Damaris. I was wondering if you could help me. I need to be able to send e-mails in the text from only and not in HTML format, using Microsoft Dynamic CRM 4.0. Is there any way to turn off of disable the HTML format in CRM?
Thanks!
convert HTML e-mails into text emails using CRM
Post a Comment