user-datatable.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*=========================================================================================
  2. File Name: user-datatable.js
  3. Description: User Datatable
  4. ----------------------------------------------------------------------------------------
  5. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: PIXINVENT
  7. Author URL: http://www.themeforest.net/user/pixinvent
  8. ==========================================================================================*/
  9. $(document).ready(function() {
  10. /************************************************
  11. * js of select checkbox and Length *
  12. ************************************************/
  13. $('#check-slct').DataTable( {
  14. columnDefs: [ {
  15. orderable: false,
  16. className: 'select-checkbox',
  17. targets: 0
  18. } ],
  19. select: {
  20. style: 'os',
  21. selector: 'td:first-child'
  22. },
  23. order: [[ 1, 'asc' ]],
  24. "lengthMenu": [[5, 25, 50, -1], [5, 25, 50, "All"]],
  25. /**************************************
  26. * js of Search Placeholder *
  27. ***************************************/
  28. language: {
  29. search: "_INPUT_",
  30. "search": '<i class="fa fa-search"></i>',
  31. "searchPlaceholder": "search",
  32. }
  33. } );
  34. } );