bootstrap-table-expandable icon indicating copy to clipboard operation
bootstrap-table-expandable copied to clipboard

Bootstrap or non-bootstrap expandable table (Jquery)

Bootstrap table expandable

Based on jExpand

Quick start

<link href="css/bootstrap-table-expandable.css" rel="stylesheet">
    
<script src="js/bootstrap-table-expandable.js"></script>

What's included

bootstrap-table-expandable/
├── css/
│   ├── bootstrap-table-expandable.css
├── example/
│   ├──img.png
│   ├──index.html
├── images/
│   ├──arrows.png
└── js/
│   ├── bootstrap-table-expandable.js

Example

<table class="table table-expandable table-sticky-header">
  <thead>
    <tr>
      <th>Country</th>
      <th>Population</th>
      <th>Area</th>
      <th>Official languages</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>United States of America</td>
      <td>306,939,000</td>
      <td>9,826,630 km2</td>
      <td>English</td>
    </tr>
    <tr>
      <td colspan="5">
        <!-- CONTENT -->  
      </td>
    </tr>
  </tbody>
</table>

Result

Example

Sticky Header

Example