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
Try:
Xrm.Page.getAttribute("multilinefield").setValue(Xrm.Page.getAttribute("multilinefield").getValue() +" your other data");
Jason Lattimer