Advertisement
Guest User

Untitled

a guest
May 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.23 KB | None | 0 0
  1.     <script>
  2.         $(document).ready(function() {
  3.             $('#players').DataTable( {
  4.                 "processing": true,
  5.                 "serverSide": true,
  6.                 "ajax": "ssp/players-server-processing.php"
  7.             } );
  8.         } );
  9.     </script>
  10.     <div class="page">
  11.         <div class="page-header"><h1 class="page-title">Players</h1></div>
  12.         <div class="page-content">        <!-- Panel Basic -->
  13.             <div class="panel">
  14.                 <header class="panel-heading">
  15.                     <div class="panel-actions"></div>
  16.                     <br></header>
  17.                 <div class="panel-body">
  18.                     <table class="table table-hover dataTable table-striped w-full" id="players">
  19.                         <thead>
  20.                         <tr>
  21.                             <th>ID</th>
  22.                             <th>SteamID</th>
  23.                             <th>Name</th>
  24.                             <th>Cash</th>
  25.                             <th>Bank</th>
  26.                             <th>Faction</th>
  27.                         </tr>
  28.                         </thead>
  29.                     </table>
  30.                 </div>
  31.             </div>        <!-- End Panel Basic -->
  32.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement