Skip to content

Instantly share code, notes, and snippets.

@devyfriend
Created May 15, 2018 02:35
Show Gist options
  • Save devyfriend/e7160ada114591a955a82f9e25d974ac to your computer and use it in GitHub Desktop.
Save devyfriend/e7160ada114591a955a82f9e25d974ac to your computer and use it in GitHub Desktop.
datatables snippets
var tb = $('#table-items').dataTable(), ap = tb.DataTable();
// change data after disable serverside option
// note: data({object:data}) must equal to existing data schemes
tb.dataTable.settings[0].oFeatures.bServerSide = false;
ap.row(0).data({a:'001',b:'abc'}).draw(false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment