I have an issue with a column with a long string using the responsive extension.
I have an issue with a column with a long string using the responsive extension.
I have an example https://jsfiddle.net/wwisner/kbod2o1d/#&togetherjs=KmKCxN0RPH
The row with Tiger will show that the column 'Very Long Description' is running off the page. I would like this column to wrap when responsive causes it to hide. I have looked through the documentation and can't find a solution. I tried to create a class and apply that class to the column but that did not work for me.
.td-limit {
max-width: 70px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
"targets": 1,
"className": "td-limit",
Any ideas would be appreciated. Love the datatables libraries.