Bootstrap table expandable
Based on jExpand
Quick start
- Download the latest release
- Clone the repo:
https://github.com/wfcreations/bootstrap-table-expandable.git
<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>