locked
Append text to the end of a field with javascript RRS feed

  • Question

  • On my record i have a multi line text field that on save i want to append some text onto the end of it. How can i do this using javascript?

    Thanks

    Friday, June 15, 2012 2:10 PM

Answers

  • Try:

    Xrm.Page.getAttribute("multilinefield").setValue(Xrm.Page.getAttribute("multilinefield").getValue() +" your other data");
    

    Jason Lattimer

    Friday, June 15, 2012 2:15 PM
    Moderator