Advertisement
gundambison

datatable01-views

Aug 24th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.93 KB | None | 0 0
  1. <?php
  2. //this is demo_datatable view
  3.  
  4. ?>
  5. <!DOCTYPE html>
  6. <html>
  7.     <head>
  8.     <meta charset="utf-8">
  9. <link href="<?=base_url();?>media/css/jquery.dataTables.css" rel="stylesheet" />
  10. </head>
  11. <body>
  12.     <h1>PROVINCE</h1>
  13.     <div style="margin-left: 10px; width: 90%;">
  14.     <table class="dt_table" >
  15.         <thead>
  16.         <tr>
  17.             <th>Number</th>
  18.             <th>Kode</th>
  19.             <th>Name</th>
  20.             <th>Action</th>
  21.         </tr>
  22.         </thead>
  23.         <tbody>
  24.         <?php
  25.         for($i=1;$i<20;$i++){
  26.         ?>
  27.           <tr>
  28.             <td><?=$i;?></td>
  29.             <td>Code <?=$i;?></td>
  30.             <td>Name for <?=$i;?></td>
  31.             <td><button>Edit</button></td>
  32.           </tr>
  33.         <?php
  34.         }
  35.         ?>
  36.         </tbody>
  37.  
  38.     </table>
  39.     </div>
  40. <script src='<?=base_url();?>media/js/jquery1.11.3.js'></script>
  41. <script src='<?=base_url();?>media/js/datatables.min.js'></script>
  42. <script>
  43. var table;
  44.  
  45. $(document).ready(function() {
  46.  
  47.     //datatables clasic
  48.     table = $('.dt_table').DataTable();
  49. });
  50. </script>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement