gsmashik

table

Jun 25th, 2018
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Bootstrap 4 Example</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
  10. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  11. <!-- Latest compiled and minified CSS -->
  12. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.12.1/bootstrap-table.min.css">
  13.  
  14. <!-- Latest compiled and minified JavaScript -->
  15. <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.12.1/bootstrap-table.min.js"></script>
  16. <script src="https://rawgit.com/wenzhixin/bootstrap-table/develop/src/extensions/export/bootstrap-table-export.js"></script>
  17. <script src="http://rawgit.com/hhurz/tableExport.jquery.plugin/master/tableExport.js"></script>
  18.  
  19. <!-- Latest compiled and minified Locales -->
  20. <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.12.1/locale/bootstrap-table-zh-EN.min.js"></script>
  21. <script src="https://github.com/kayalshri/tableExport.jquery.plugin/blob/master/jquery.base64.js"></script>
  22. </head>
  23. <body>
  24. <div class="container">
  25. <div id="toolbar">
  26. <button id="button remove" class="btn btn-default remove">remove</button>
  27.  
  28. </div>
  29. <table data-pagination="true" data-search="true" data-search-on-enter-key ="false" data-toggle="table" data-classes="table table-hover" data-striped="false" id="ddd"
  30.  
  31. data-toolbar="#toolbar"
  32. data-search="true"
  33. data-show-refresh="true"
  34. data-show-toggle="true"
  35. data-show-columns="true"
  36. data-detail-view="true"
  37. data-minimum-count-columns="2"
  38. data-show-pagination-switch="true"
  39. data-pagination="true"
  40. data-page-list="[10, 25, 50, 100, ALL]"
  41. data-side-pagination="server"
  42.  
  43.  
  44. ` data-response-handler="responseHandler">
  45.  
  46. <thead>
  47. <tr>
  48. <th data-sortable="true" data-sort-class="custom" data-sort-order="desc" data-field="id">Item ID</th>
  49. <th data-sortable="true" data-sort-order="desc" data-field="name">Item Name</th>
  50. <th data-sortable="true" data-sort-order="desc" data-field="price">Item Price</th>
  51. <th data-sortable="true" data-sort-order="desc" data-field="description">Description</th>
  52. </tr>
  53. </thead>
  54. <tbody>
  55. <tr id="" class="">
  56. <td id="" class="">
  57. bootstrap-table
  58. </td>
  59. <td data-field="as" data-checkbox="">55</td>
  60. <td>122</td>
  61. <td>An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features. (supports twitter bootstrap v2 and v3)
  62. </td>
  63. </tr>
  64. <tr id="" class="">
  65. <td id="" class="">
  66. multiple-select
  67. </td>
  68. <td>288</td>
  69. <td>150</td>
  70. <td>A jQuery plugin to select multiple elements with checkboxes :)
  71. </td>
  72. </tr>
  73. <tr id="" class="">
  74. <td id="" class="">
  75. bootstrap-show-password
  76. </td>
  77. <td>32</td>
  78. <td>11</td>
  79. <td>Show/hide password plugin for twitter bootstrap.
  80. </td>
  81. </tr>
  82. <tr id="" class="">
  83. <td id="" class="">
  84. blog
  85. </td>
  86. <td>13</td>
  87. <td>4</td>
  88. <td>my blog</td>
  89. </tr>
  90. <tr id="" class="">
  91. <td id="" class="">
  92. scutech-redmine
  93. <td>6</td>
  94. <td>3</td>
  95. <td>Redmine notification tools for chrome extension.</td>
  96. </tr>
  97. </tbody>
  98. </table>
  99.  
  100. </div>
  101.  
  102. <script>
  103.  
  104.  
  105. $(document).ready(function(){
  106.  
  107.  
  108.  
  109.  
  110. });
  111. </script>
  112. </body>
  113. </html>
Add Comment
Please, Sign In to add comment