How do I prevent a column to be displayed in a child row when using responsive?
How do I prevent a column to be displayed in a child row when using responsive?
webbox
Posts: 4Questions: 2Answers: 0
I have a columns with drop down buttons that I alway want visible and never moved to the child row. All other column can be moved to the child row but how do I prevent a specific column from ever being moved to the child row by the responsive plugin?
This discussion has been closed.
Answers
Hi,
You can use the
never
class to that column - see the documentation here.Allan
Hi allan,
Thanks for the quick reply. The issue is that the last column of the table contains a bootstrap drop down menu. I want the last column to always be visible (never hidden and never in the child row) all other columns can be hidden.
the dropdown must not be in the child row:
https://docs.google.com/drawings/d/1KixWUEOESHtqHLlU-cYJIua88-RNH0LEgrH0ajt-Rzk/edit?usp=sharing
The last column must always show as in this link:
https://docs.google.com/drawings/d/13c8EjthFfRKh4pk33w9ImUsC38_oOhCaMItSQjg6cnA/edit?usp=sharing
The 'never' class is hiding the dropdown buttons even in the main table. I need to always have the buttons visible as last column in the table and never under the child row.
Any idea on how to achieve this?
The
all
class from the documentation page I linked to above should do that. It will make the column always visible.Allan