Column keeps resizing outside the header bounds
Column keeps resizing outside the header bounds
Bieb
Posts: 8Questions: 0Answers: 0
Is there ever going to be a fix for this annoying issue?
http://i.imgur.com/y6jsP.png
I would of expected the items would simply word wrap... but now i have to truncate the majority of my table data for it to even display correctly in all browsers.
[code]
oTable = $t('#example').dataTable({
"bJQueryUI": true,
"bPaginate": false,
"bAutoWidth": false,
"bLengthChange": false,
});
[/code]
http://i.imgur.com/y6jsP.png
I would of expected the items would simply word wrap... but now i have to truncate the majority of my table data for it to even display correctly in all browsers.
[code]
oTable = $t('#example').dataTable({
"bJQueryUI": true,
"bPaginate": false,
"bAutoWidth": false,
"bLengthChange": false,
});
[/code]
This discussion has been closed.
Replies
There are a number of options to deal with this including enabling x-scrolling or relaxing the constraint (presumably with CSS) on the wrapper element (just set it to width: 100%). Also if you want to have no wrapping enforced without using you can use the white-space option of CSS (nowrap).
Regards,
Allan