Hi,
Thanks for the reply and your solution working perfectly!!!! thank you and appreciate that
Hi,
Thanks for the reply and your solution working perfectly!!!! thank you and appreciate that
My address data return on the pdf report like below.
No 99, street1\r\nstreet 2.
i would like to print to new line. i tried write a function to replace the \r\n to <br />.
function replace(value){
var result = value.replace(/\r\n/, "<br />");
return result;
}
but it return No 99, street1<br />street 2 instead print new line.
anyone can help? I want the address to show like below
No 99, street1
street2
Thanks in advance