Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $(document).ready(function(){
  2. var table = $('#reminders').DataTable({
  3. //dom: 'Blfrtip',
  4. //lengthChange: false,
  5. "lengthMenu": [[50, 100, 1000, -1], [50, 100, 1000, "All"]],
  6. "initComplete": function(){
  7. $("#reminders").show();
  8. },
  9. buttons: ['copy', 'csv', 'excel', 'pdf', 'print', 'colvis']
  10. });
  11.  
  12. table.buttons().container().appendTo( '#example_wrapper .col-md-6:eq(0)' );
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement