
fixed_table.js is a pure JavaScript library that makes your large table scrollable with fixed rows and columns.
How to use it:
Add the fixed_table.js script into the webpage.
<script src="fixed_table.js"></script>
Wrap your html table into a DIV container with an unique ID of ‘fixedTable’.
<div id="fixedTable">
<table>
<thead>....</thead>
<tbody>
<tr>
<th>...</th> or <td>...</td>
....
</tr>
</tbody>
</table>
</div>Initialize the FixedTable and done.
new FixedTable();
Changelog:
09/03/2018
- set corner cell height style







