JavaScript Library For Fixed Table Rows And Columns – fixed_table.js

Category: Javascript , Table | September 3, 2018
Author:webcyou
Views Total:4,120 views
Official Page:Go to website
Last Update:September 3, 2018
License:MIT

Preview:

JavaScript Library For Fixed Table Rows And Columns – fixed_table.js

Description:

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

You Might Be Interested In:


Leave a Reply