Hi all
I have looked through previous posts to find out how to insert a 'carriage return' in a multiline text field using script and have tried using "<br>" and "/n" however to do this you have to set XSS security set to 'Low'. However I belive that it is now longer possible to do this.
Has anybody else come across this and know how to achive this.
Script below takes each record and adds two fields seperated by a hyphen to a string then adds the string to the mutiline text field followed by a a carriafe return.
for each rec in Candidate_Notes
{
row=rec.Date_Time + " - " + rec.Note;
Notes=input.Notes + row + "/n <br>";
}
However the result is just displayed on one line as below
15-May-2013 11:56:02 - Note One/n <br>16-May-2013 11:56:05 - Note Two/n <br>17-May-2013 13:07:25 - Note Three/n <br>
Any help would be most appreciated