First Column disappears when changing from responsive mode(+/-) to standard mode
First Column disappears when changing from responsive mode(+/-) to standard mode
legends
Posts: 16Questions: 5Answers: 0
Here is a reproduction:
jsbin.com/dezuga/3/edit?html,js,output
When you resize the width of the output page, in responsive mode (when the expand/collapse signs appear) you can see the "name" column, if you enlarge the width of the page and the table switches into standard mode the "name" column is hidden.
Why is that?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Removing
targets: 0
solved the problem-
Its because of the class name
control
. I didn't really expect anyone to use that class with aninline
style, so this is a bug. Responsive is seeing it as the control column (due to the class) and thus removing it when it isn't needed.Of course when using inline styling, that isn't too useful. So the fix for the moment, until I get a chance to add the required
if
statement, is to not use that class for inline controlled tables.Allan