Row heigth
Row heigth
gmstephane
Posts: 11Questions: 5Answers: 0
Link to test case:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:
Hello
i would like to the height of each row to be the same and set different width size for specific column
Answers
Hello gmstephane,
Have you tried this: https://datatables.net/forums/discussion/43272/how-to-make-the-height-of-rows-fixed
Hello SWATswat
Thanks for your quick reply.
i follow your link,
in fact i dealing with long text that causes the height of a row to oversized. is there a solution to set a fixe height for each row and set the width also?
Possibly add
nowrap
to thetable
tag and use an ellipsis renderer like this.Kevin
The other option, if you want multi-line, is to wrap the content of each cell in a
div
(which you can do with a renderer) and then set a max-height for it.Allan