table-datatable.js 419 B

1234567891011121314151617181920
  1. $(function() {
  2. "use strict";
  3. $(document).ready(function() {
  4. $('#example').DataTable();
  5. } );
  6. $(document).ready(function() {
  7. var table = $('#example2').DataTable( {
  8. lengthChange: false,
  9. buttons: [ 'copy', 'excel', 'pdf', 'print']
  10. } );
  11. table.buttons().container()
  12. .appendTo( '#example2_wrapper .col-md-6:eq(0)' );
  13. } );
  14. });