I have a column in my DataTable
that is a text field currently wrapped to multiple lines. I want to create a DataTable
with the following properties:
- The text of each record takes one row (no wrapping)
- The columns are each a fixed length (variable by column)
- No side scrolling (
scrollX: false
) - Overflowing text is replaced with an ellipsis
...
I've tried modifying the css as such, but the columns expand beyond the pixel width I've defined to be as wide as possible and no text is truncated with ...
th, td {
white-space: nowrap;
overflow:hidden;
text-overflow: ellipsis;
}