Fixed and Non-Fixed Columns areas in the igGrid
™ control are implemented as a two separate table DOM elements. This requires all grid Document Object Model (DOM) manipulation methods to be duplicated for the Fixed Columns area. Usually, the Fixed Columns area APIs are prefixed with the word fixed.
The following table summarizes the purpose and functionality of the igGrid
methods related to the Column Fixing feature.
Method | Description |
---|---|
allFixedRows | Gets the data for all rows in the Fixed Columns area. |
cellAt | Gets a specific cell from the grid. Returns the DOM element of the cell at specified location. A new Boolean parameter is added to the API. |
fixedBodyContainer | Gets the body container of the Fixed Columns area. Returns the DOM of the body element containing the fixed columns. |
fixedContainer | Gets the container of the Fixed Columns area. Returns the DOM container element of the fixed columns. |
fixedFooterContainer | Gets the container of the footer in the Fixed Columns area. Returns the DOM container element of the footer in the Fixed Columns area. |
fixedFootersTable | Gets the table of the footer in the Fixed Columns area. Returns the DOM table element of the footer in the Fixed Columns area. |
fixedHeaderContainer | Gets the container of the header in the Fixed Columns area. Returns the DOM container element of the header in the Fixed Columns area. |
fixedRowAt | Gets a specific row from the Fixed Columns area. Returns the DOM element of the row at the specified index. |
fixedRows | Gets the fixed rows. Returns an array of all DOM’s <tr> elements. |
fixedTable | Gets the fixed table. Returns the DOM element of the fixed table. |
hasFixedColumns | Checks whether there are fixed columns in the grid. Returns true or false. |
isFixedColumn | Checks whether the column is fixed either by column key or index. Returns true or false. |
View on GitHub