My code is like this : http://jsfiddle.net/rkovmhkp/3/
...
}).rowGrouping({
fnOnGrouped: function(groups){
console.log("Groups", groups);
for(key in groups){
if(groups.hasOwnProperty(key)){
$(groups[key].nGroup).css('background-color', '#F99');
}
}
}
});
...
I want add checkbox in the upper left corner. When user check the checkbox, The system will show row grouping datatables. When user uncheck the checkbox, The system will show datatables without row grouping. Thank you