showing results for - "jquery datatable draw false"
Ariadna
03 Oct 2018
1redraw the table maintaining current paging position
2
3Example :
4var table = $('#example').DataTable();
5 
6// Sort by column 1 and then re-draw
7table
8    .order( [[ 1, 'asc' ]] )
9    .draw( false );