Is there a way to delete mmultiple rows from datatables. As I understand fnDeleteRow, fnDraw is called. Is there a way to override this? Or some other solution.
If you pass null, false as the second and third parameters to fnDeleteRow, a redraw won't occur.
See here for the documentation http://datatables.net/api#fnDeleteRow .
So you could loop through an array and delete multiple rows(passing null,false), then call fnDraw at the end.
Replies
See here for the documentation http://datatables.net/api#fnDeleteRow .
So you could loop through an array and delete multiple rows(passing null,false), then call fnDraw at the end.
Hope this helps.