jQuery dataTable draw false

redraw the table maintaining current paging position

Example :
var table = $('#example').DataTable();
 
// Sort by column 1 and then re-draw
table
    .order( [[ 1, 'asc' ]] )
    .draw( false );
Lokesh003