Advertisement
zawaruddin

Contoh Datatableku

Mar 31st, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // return dari controller
  2. //echo json_encode(array( 'iTotalRecords' => $total['result'],
  3. //                      'iTotalDisplayRecords' => $total['result'],
  4. //                      'aaData' => $data,
  5. //                      'sEcho' => $this->input->post('sEcho', true)));
  6.  
  7.  
  8. dt  =   $('#data_table').DataTable( {  
  9.                     "bLengthChange": false,
  10.                     "bProcessing": true,
  11.                     "bServerSide": true,
  12.                     "sAjaxSource": "<?php echo site_url("mhs/loadData")?>",
  13.                     "sServerMethod": "POST",
  14.                     "aoColumns": [
  15.                         { "sWidth": "5%", "sClass": "center", "bSortable": false, "bSearchable": false},
  16.                         { "sWidth": "25%"},
  17.                         { "sWidth": "10%"},
  18.                         { "sWidth": "5%", "sClass": "center", "bSortable": false, "bSearchable": false},
  19.                         { "sWidth": "10%", "bSortable": false, "bSearchable": false},
  20.                         { "sWidth": "10%", "bSortable": false, "bSearchable": false},
  21.                         { "sWidth": "18%", "bSortable": false, "bSearchable": false},
  22.                         { "sWidth": "8%", "bSortable": false, "bSearchable": false},
  23.                         { "sWidth": "9%", "bSortable": false, "bSearchable": false},
  24.                     ]
  25.                 });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement