haifahrul

Yii2 Grid Jeasyui - View

Aug 22nd, 2019
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.69 KB | None | 0 0
  1.  <table id="dg" class="" toolbar="#dg-toolbar">
  2.         <thead data-options="frozen:true">
  3.             <th field="ktp" sortable="true" fixed="true" width="120">KTP</th>
  4.             <th field="people_name" sortable="true" fixed="true" width="180">Name</th>
  5.             <th field="people_gender" sortable="true" fixed="true" width="80" align="center">Gender</th>
  6.         </thead>
  7.         <thead>
  8.         <tr>
  9.             <th field="ktp" sortable="true" fixed="true" width="120">KTP</th>
  10.             <th field="people_name" sortable="true" fixed="true" width="180">Name</th>
  11.             <th field="people_gender" sortable="true" fixed="true" width="80" align="center">Gender</th>
  12.             <th field="phone" sortable="true" fixed="true" width="100">Phone</th>
  13.             <th field="state" sortable="true" fixed="true" width="130">State</th>
  14.             <th field="city" sortable="true" fixed="true" width="130">City</th>
  15.             <th field="address" sortable="true" fixed="true" width="190">Address</th>
  16.             <th field="zip_code" sortable="true" fixed="true" width="100">Zip Code</th>
  17.             <th field="is_internal" sortable="true" fixed="true" width="100" align="center" formatter="libs.functions.formatStatus">Status</th>
  18.             <th field="unit_name" sortable="true" fixed="true" width="180">Unit Name</th>
  19.         </tr>
  20.         </thead>
  21.     </table>
  22. <?php
  23. $script = <<<SCRIPT
  24.  
  25. $('#dg').datagrid({
  26.      fit: true,
  27.      singleSelect: true,
  28.      // fitColumns:true,
  29.      pageList: [10,15,20,50,100],
  30.      rownumbers: true,
  31.         pageSize: 20,
  32.      url: URL, // ganti url get data
  33.  
  34.     pagination: true,
  35. });
  36.  
  37.  
  38. SCRIPT;
  39. $this->registerJs($script, \yii\web\View::POS_READY);
  40. ?>
Add Comment
Please, Sign In to add comment