stacktable.js is a jQuery responsive table plugin for stacking tables on small screens. The purpose of stackable js is to give you an easy way to convert wide tables into a format that works best on small screens. Creates a copy of the table that is converted to a two-column key/value format.
jquery responsive table, jquery vertical table, stack table, stackable js cdn, responsive table library, responsive tables js, jquery grid table
Options
- myClass: Classes are separated by a space to add to the table.
- headIndex: Use this to specify the index of the header row, if it is not the first.
How to make use of it:
1. The Markup structure.
<a id="run" href="#">run ยป</a> <table id="simple-example-table" cellspacing="0"> <tbody> <tr align="left"> <th width="30%">Stuff</th> <th width="12%">Rate</th> <th width="12%">Amount</th> <th width="12%">Points</th> <th width="12%">Number</th> <th width="18%">Type</th> <th width="12%">Name</th> </tr> <tr> <td>Something</td> <td>3.375%</td> <td>$123.12</td> <td>1.125</td> <td>4,000</td> <td>Potato</td> <td>Paul</td> </tr> <tr> <td>Something Else</td> <td>2.750%</td> <td>$345.23</td> <td>5</td> <td>180</td> <td>Spaceship</td> <td>Skippy</td> </tr> <tr> <td colspan="7" class="sub">Subgroup Header</td> </tr> <tr> <td>Another Thing</td> <td>3.375%</td> <td>$563.12</td> <td>222</td> <td>60</td> <td>Gym Shoe</td> <td>George</td> </tr> <tr> <td>Thing w/Less Stuff</td> <td></td> <td></td> <td></td> <td></td> <td>Harmonica</td> <td>Helga</td> </tr> <tr> <td>Last Thing</td> <td></td> <td></td> <td></td> <td>4</td> <td>Meaning of Life</td> <td></td> </tr> </tbody> </table>
2. Include the jQuery library and the stacktable.js plugin on the web page.
<link rel="stylesheet" href="/path/to/stacktable.css" /> <script src="/path/to/cdn/jquery.min.js"></script> <script src="/path/to/stacktable.js"></script>
3. Call the plugin on the HTML table and achieved.
$(document).on('click', '#run', function(e) { e.preventDefault(); $('#simple-example-table').stacktable(); $(this).replaceWith('<span>ran</span>'); });
4. Add an additional CSS class to the table.
$('#simple-example-table').stacktable({ myClass: 'your-custom-class' });
5. Specify the row index of the header, in case it is not the primary.
$('#simple-example-table').stacktable({ headIndex: 2 });
6. Card table works equally to stack table beside it breaks every row into its personal table.
$('#simple-example-table').cardtable();
7. An different responsive design creates a duplicate of the table right into a 2 column key/value format that preserves the columns of the unique table.
$('#simple-example-table').stackcolumns();
Stacking Tables On Small Screens, stacktable.js Plugin/Github
See Demo And Download
Official Website(johnpolacek): Click Here
This superior jQuery/javascript plugin is developed by johnpolacek. For extra Advanced usage, please go to the official website.