locked
Text Editor for mscrm 2013 RRS feed

  • 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

All replies

  • Hi,

    Have a look at this Silverlight rich text editor. It may help you.

    Friday, January 10, 2014 2:54 PM
    Moderator
  • 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 PM
    Moderator
  • 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  bold

    if(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