jquery-datatable.js 288 B

1234567891011121314
  1. $(function () {
  2. $('.js-basic-example').DataTable({
  3. responsive: true
  4. });
  5. //Exportable table
  6. $('.js-exportable').DataTable({
  7. dom: 'Bfrtip',
  8. responsive: true,
  9. buttons: [
  10. 'copy', 'csv', 'excel', 'pdf', 'print'
  11. ]
  12. });
  13. });