Advertisement
Bedhoel

view/user.php

May 12th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 6.69 KB | None | 0 0
  1.  <!-- JQuery DataTable Css -->
  2.  <link href="<?php echo $basepath ?>assets/plugins/jquery-datatable/skin/bootstrap/css/dataTables.bootstrap.css" rel="stylesheet">
  3. <section class="content">
  4.         <div class="container-fluid">
  5.             <div class="block-header">
  6.                 <h2>
  7.                     JQUERY DATATABLES
  8.                 </h2>
  9.             </div>
  10.             <!-- Exportable Table -->
  11.             <div class="row clearfix">
  12.                 <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
  13.                     <div class="card">
  14.                         <div class="header">
  15.                             <h2>
  16.                                 EXPORTABLE TABLE
  17.                             </h2>
  18.                             <ul class="header-dropdown m-r--5">
  19.                                 <li class="dropdown">
  20.                                     <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
  21.                                         <i class="material-icons">more_vert</i>
  22.                                     </a>
  23.                                     <ul class="dropdown-menu pull-right">
  24.                                         <li><a href="javascript:void(0);">Action</a></li>
  25.                                         <li><a href="javascript:void(0);">Another action</a></li>
  26.                                         <li><a href="javascript:void(0);">Something else here</a></li>
  27.                                     </ul>
  28.                                 </li>
  29.                             </ul>
  30.                         </div>
  31.                         <div class="body">
  32.                             <div class="table-responsive">
  33.                                 <table class="table table-bordered table-striped table-hover dataTable js-exportable">
  34.                                     <thead>
  35.                                         <tr>
  36.                                             <th>Name</th>
  37.                                             <th>Position</th>
  38.                                             <th>Office</th>
  39.                                             <th>Age</th>
  40.                                             <th>Start date</th>
  41.                                             <th>Salary</th>
  42.                                         </tr>
  43.                                     </thead>
  44.                                     <tfoot>
  45.                                         <tr>
  46.                                             <th>Name</th>
  47.                                             <th>Position</th>
  48.                                             <th>Office</th>
  49.                                             <th>Age</th>
  50.                                             <th>Start date</th>
  51.                                             <th>Salary</th>
  52.                                         </tr>
  53.                                     </tfoot>
  54.                                     <tbody>
  55.                                         <tr>
  56.                                             <td>Tiger Nixon</td>
  57.                                             <td>System Architect</td>
  58.                                             <td>Edinburgh</td>
  59.                                             <td>61</td>
  60.                                             <td>2011/04/25</td>
  61.                                             <td>$320,800</td>
  62.                                         </tr>
  63.                                         <tr>
  64.                                             <td>Garrett Winters</td>
  65.                                             <td>Accountant</td>
  66.                                             <td>Tokyo</td>
  67.                                             <td>63</td>
  68.                                             <td>2011/07/25</td>
  69.                                             <td>$170,750</td>
  70.                                         </tr>
  71.                                         <tr>
  72.                                             <td>Ashton Cox</td>
  73.                                             <td>Junior Technical Author</td>
  74.                                             <td>San Francisco</td>
  75.                                             <td>66</td>
  76.                                             <td>2009/01/12</td>
  77.                                             <td>$86,000</td>
  78.                                         </tr>
  79.                                     </tbody>
  80.                                 </table>
  81.                             </div>
  82.                         </div>
  83.                     </div>
  84.                 </div>
  85.             </div>
  86.             <!-- #END# Exportable Table -->
  87.         </div>
  88.     </section>
  89.     <!-- Jquery Core Js -->
  90.     <script src="<?php echo $basepath ?>assets/plugins/jquery/jquery.min.js"></script>
  91.  
  92.     <!-- Bootstrap Core Js -->
  93.     <script src="<?php echo $basepath ?>assets/plugins/bootstrap/js/bootstrap.js"></script>
  94.  
  95.     <!-- Select Plugin Js -->
  96.     <script src="<?php echo $basepath ?>assets/plugins/bootstrap-select/js/bootstrap-select.js"></script>
  97.  
  98.     <!-- Slimscroll Plugin Js -->
  99.     <script src="<?php echo $basepath ?>assets/plugins/jquery-slimscroll/jquery.slimscroll.js"></script>
  100.  
  101.     <!-- Waves Effect Plugin Js -->
  102.     <script src="<?php echo $basepath ?>assets/plugins/node-waves/waves.js"></script>
  103.  
  104.     <!-- Jquery DataTable Plugin Js -->
  105.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/jquery.dataTables.js"></script>
  106.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/skin/bootstrap/js/dataTables.bootstrap.js"></script>
  107.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/extensions/export/dataTables.buttons.min.js"></script>
  108.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/extensions/export/buttons.flash.min.js"></script>
  109.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/extensions/export/jszip.min.js"></script>
  110.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/extensions/export/pdfmake.min.js"></script>
  111.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/extensions/export/vfs_fonts.js"></script>
  112.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/extensions/export/buttons.html5.min.js"></script>
  113.     <script src="<?php echo $basepath ?>assets/plugins/jquery-datatable/extensions/export/buttons.print.min.js"></script>
  114.  
  115.     <!-- Custom Js -->
  116.     <script src="<?php echo $basepath ?>assets/js/admin.js"></script>
  117.     <script src="<?php echo $basepath ?>assets/js/pages/tables/jquery-datatable.js"></script>
  118.  
  119.     <!-- Demo Js -->
  120.     <script src="<?php echo $basepath ?>assets/js/demo.js"></script>
  121. </body>
  122.  
  123. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement