table_datatable.html 1014 B

12345678910111213141516171819202122232425262728293031323334
  1. <div class="bg-light lter b-b wrapper-md">
  2. <h1 class="m-n font-thin h3">Datatable</h1>
  3. </div>
  4. <div class="wrapper-md">
  5. <div class="panel panel-default">
  6. <div class="panel-heading">
  7. DataTables
  8. </div>
  9. <div class="table-responsive">
  10. <table ui-jq="dataTable" ui-options="{
  11. sAjaxSource: 'vendor/jquery/datatables/datatable.json',
  12. aoColumns: [
  13. { mData: 'engine' },
  14. { mData: 'browser' },
  15. { mData: 'platform' },
  16. { mData: 'version' },
  17. { mData: 'grade' }
  18. ]
  19. }" class="table table-striped m-b-none">
  20. <thead>
  21. <tr>
  22. <th style="width:20%">Rendering engine</th>
  23. <th style="width:25%">Browser</th>
  24. <th style="width:25%">Platform(s)</th>
  25. <th style="width:15%">Engine version</th>
  26. <th style="width:15%">CSS grade</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. </tbody>
  31. </table>
  32. </div>
  33. </div>
  34. </div>