I have a data table in my application. One column have heavy data which increasing the width of table.
I want to split the data to two or more lines in that column.
I used the following solution after going through an answer by BalusC to some other related question.
I use this in CSS:
.ui-datatable tbody td.wrap { white-space: normal; word-wrap: break-word; }
And this with my columns:
This handles data with space and without spaces -both.