I am hiding rows dynamically in a table ('myTable
') based based on manually added classes ('myClass
').
The table uses the Datables plugin with the standard zebra-striped background colors.
Is there a way to keep these zebra stripes after manually hiding rows in that table ?
This works fine when sorting and filtering the table by using the standard Datatables functions so I assume there is a setting that allows this.
I am using a simple Show / Hide function based on a class that I add manually:
$('.myClass').hide(); / $('.myClass').show();
Can someone here help me with this ?
Many thanks in advance, Tim.