Harsh Dave
Harsh Dave
@Dawnofhell The issue is how the datatables handle the rows. Basically, datatables only draw N rows in the table, and that being said, there will always be only N rows...
Below code works for switches on datatable. Approach is the same as I mentioned in my above comment. ``` // get datatable instance var table = $('#table').DataTable(); // convert column...
@AnuroopSuresh well, I haven't tried above code with ajax. if your `fnDrawCallback` is being called after the data is loaded through ajax and populated in the table, above code should...