This javascript plugin freezes the row and column in a table structure, Its very useful options when the table has rows and columns.

Table option can define the number of column and row should be fixed, Table width and height resize option and table cell width can be optimize.
Setting Option object
var
option = {
"column"
: 2,
"row"
: 2,
"width"
: 800,
"height"
: 700,
"cellWidth"
: [100, 200, 100, 100, 100, 200]
}
Options
Option
Description
column
Number of column need to Freeze
row
Number of row need to Freeze
width
width of the Table
height
height of the Table
cellWidth
Each cell width can define in array
Invoke Method
$(
"#jtable"
).jtable(option);
Comments