Answered by:
Text Editor for mscrm 2013

Question
-
Dear all;
i am looking for text editor(like making text bold underline and other stuff with the text) for mscrm 2013 online does not matter if it is paid
Friday, January 10, 2014 1:39 PM
Answers
-
Hi,
Have a look at this Silverlight rich text editor. It may help you.
- Proposed as answer by Payman BiukaghazadehEditor Wednesday, January 29, 2014 12:44 PM
- Marked as answer by Payman BiukaghazadehEditor Saturday, February 1, 2014 12:58 PM
Friday, January 10, 2014 2:54 PMModerator
All replies
-
Hi,
Have a look at this Silverlight rich text editor. It may help you.
- Proposed as answer by Payman BiukaghazadehEditor Wednesday, January 29, 2014 12:44 PM
- Marked as answer by Payman BiukaghazadehEditor Saturday, February 1, 2014 12:58 PM
Friday, January 10, 2014 2:54 PMModerator -
Hi do you know how to fit that one in mscrm 2013???Friday, January 10, 2014 2:56 PM
-
I have used that on 2011 version, but it actually should work on 2013 also. As far as I remember you should upload it as a webresource and then use on the forms.Friday, January 10, 2014 3:01 PMModerator
-
ok lets say mscrm 2011 how it will connect with the fields of mscrm like description filed on product could you please help me
- Edited by anwar_addi Friday, January 10, 2014 3:20 PM
Friday, January 10, 2014 3:05 PM -
Hi,
Why don't you try with the JavaScript web resource
function alertvip()
{
var vip= Xrm.Page.getAttribute("new_vip").getValue();
var result = vip.bold();
document.getElementById("new_vip").innerHTML=result; // to make the text boldif(vip==true)
{
document.getElementById("new_vip").innerHTML="<fontcolor=#ff0000>VIP</font>" // to make field in redcolor
}
else
{
document.getElementById("new_vip").innerHTML="<b>VIP</b>";// to make the field bold.
}
once try this
Saturday, January 18, 2014 9:15 AM