How can I show multiple lines in cell?
https://datatables.net/forums/discussion/42262
Is there any easy way, like I can set "textarea" in DataTables Editor?
My line break characters are CR LF.
Use a renderer and replace \n with <br>. You need to remember that \n and \r are basically meaningless in HTML.
\n
<br>
\r
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
https://datatables.net/forums/discussion/42262
Is there any easy way, like I can set "textarea" in DataTables Editor?
My line break characters are CR LF.
Use a renderer and replace
\n
with<br>
. You need to remember that\n
and\r
are basically meaningless in HTML.Allan