My Issue:
I am working on a project which is related to DataTableJS. I need a row grouping feature and It\'s separated with grouped rows. Just I want to
You just need to write this
table.on( 'click', 'tr.group', function () { var rowsCollapse = $(this).nextUntil('.group'); $(rowsCollapse).toggleClass('hidden'); });