Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. $(".mydataTable").dataTable({
  2. "aoColumnDefs": [
  3. {"bVisible": false, "aTargets": [ 0 ] }
  4. ],
  5. "aaSorting": [[ 0, "desc" ]],
  6. "bJQueryUI": true,
  7. "bPaginate": false,
  8. "bStateSave": true,
  9. "bInfo": false,
  10. "aLengthMenu": [5, 10, 15, 25, 50, 100],
  11. "iDisplayLength" : 10,
  12. "bAutoWidth" : false,
  13. "aoColumns": [
  14. { "sWidth": "70px" },
  15. { "sWidth": "90px" },
  16. { "sWidth": "220px" },
  17. { "sWidth": "90px" },
  18. { "sWidth": "90px" },
  19. { "sWidth": "90px" }
  20. ],
  21.  
  22. });
  23.  
  24. "aoColumnDefs": [
  25. {"bVisible": false, "aTargets": [ 0 ] },
  26. { "sWidth": "10%", "aTargets": [ 2 ] }
  27. ],
  28.  
  29. <table class="mydataTable" style="width: 650px;">
  30.  
  31. table#customTable {
  32. table-layout: fixed;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement