Guest User

Untitled

a guest
Nov 18th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <meta charset = "utf-8">
  2. <style type="text/css" media="screen">
  3. @import "/media/css/site_jui.ccss";
  4. @import "/release-datatables/media/css/demo_table_jui.css";
  5. @import "js/jquery/css/smoothness/jquery-ui-1.8.23.custom.css";
  6.  
  7. /*
  8. * Override styles needed due to the mix of three different CSS sources! For proper examples
  9. * please see the themes example in the 'Examples' section of this site
  10. */
  11. .dataTables_info { padding-top: 0; }
  12. .dataTables_paginate { padding-top: 0; }
  13. .css_right { float: right; }
  14. #example_wrapper .fg-toolbar { font-size: 0.8em }
  15. #theme_links span { float: left; padding: 2px 10px; }
  16.  
  17. body {
  18. background-color: #7db9e8;
  19. font-family:sans-serif;
  20. }
  21. table{
  22. background-color: #fff;
  23. }
  24. </style>
  25. <script type="text/javascript" src="js/jquery/js/jquery-1.8.0.min.js"></script>
  26. <script type="text/javascript" src="js/jquery/js/jquery-ui-1.8.23.custom.min.js"></script>
  27. <script type="text/javascript" src="js/datatables/jquery.dataTables.js"></script>
  28. <script type="text/javascript" src="js/datatables/TableTools.min.js"></script>
  29. <script type="text/javascript" charset="utf-8">
  30. $(document).ready( function () {
  31. $('#example').dataTable( {
  32. "sDom": 'T<"clear">lfrtip',
  33. "oTableTools": {
  34. "sSwfPath": "js/datatables/swf/copy_csv_xls_pdf.swf",
  35. "aButtons": [
  36. "copy",
  37. "csv",
  38. "xls",
  39. {
  40. "sExtends": "pdf",
  41. "sPdfOrientation": "landscape",
  42. "sPdfMessage": "Your custom message would go here."
  43. },
  44. "print"
  45. ]
  46.  
  47. }
  48.  
  49. } );
  50. } );
  51. </script>
Add Comment
Please, Sign In to add comment