Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. var date = $('#date-id').val();
  2. $('#cash-out-records').dataTable( {
  3. "sDom": 'T<"clear">lfrtip',
  4. "sPaginationType": "bootstrap",
  5. "iDisplayLength": 10,
  6. "oTableTools": {
  7. "sSwfPath": '/js/datatable/swf/copy_csv_xls_pdf.swf',
  8. "aButtons": [
  9. "copy",
  10. "csv",
  11. "xls",
  12. {
  13. "sExtends": "pdf",
  14. "sPdfOrientation": "landscape",
  15. "sFileName": "<?php echo $lang['cash_out_report']; ?>"+date+".pdf",
  16. "sPdfMessage": "Your custom message would go here."
  17. }
  18. ]
  19. },
  20. "oLanguage": {
  21. "sUrl": '/js/datatable/lang_<?php echo $_SESSION['language']; ?>.txt'
  22. }
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement