Responsive column widths
Responsive column widths
jtoler5
Posts: 93Questions: 34Answers: 3
in Extensions
Is there not a way to make Responsive listen to the column widths set in the datatables columns array? I have every column set with a specific width and autowidth turned off, with Responsive enabled; it does not listen to these values.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
See [retracted]
Description column stretches to the longest 'text width' despite width being set to 10%.
The problem is that the description column's content wouldn't fit into 10% of the table's width. If you inspect the header element for that column you will see that the width for the column is set to 10%, but the browser is effectively overruling you since that doesn't work.
There are basically two options:
nowrap
class at the moment thus it is forcing the width.Allan
Ok I feel dumb. I do not know how that nowrap got in there. Guess it was just timing that it started when I enabled responsive. Thanks though!
I know what it was now! One of your examples for bootstrap has "nowrap" applied to the table. For some reason I thought it meant it would not wrap a container around the table. Dumb me!