setColumnVisible | Sets the visibility of a column. Key can be the column ID or Column object. |
setColumnsVisible | Same as setColumnVisible , but provide a list of column keys. |
getDisplayNameForColumn | Returns the display name for a column. Useful if you are doing your own header rendering and want the grid to work out if headerValueGetter is used, or if you are doing your own column management GUI, to know what to show as the column name. |
getDisplayNameForColumnGroup | Returns the display name for a column group (when grouping columns). |
getDisplayedColAfter | Returns the column to the right of the provided column, taking into consideration open / closed column groups and visible columns. This is useful if you need to know what column is beside yours e.g. if implementing your own cell navigation. |
getDisplayedColBefore | Same as getVisibleColAfter except gives column to the left. |
getAllDisplayedVirtualColumns | Same as getAllGridColumns() , except only returns rendered columns, i.e. columns that are not within the viewport and therefore not rendered, due to column virtualisation, are not displayed. |
getAllDisplayedColumns | Returns all columns currently displayed (e.g. are visible and if in a group, the group is showing the columns) for the pinned left, centre and pinned right portions of the grid. |
getDisplayedCenterColumns | Same as getAllDisplayedColumns but just for the center portion of the grid. |
getDisplayedLeftColumns | Same as getAllDisplayedColumns but just for the pinned left portion of the grid. |
getDisplayedRightColumns | Same as getAllDisplayedColumns but just for the pinned right portion of the grid. |
getAllDisplayedColumnGroups | Returns all 'root' column headers. If you are not grouping columns, these return the columns. If you are grouping, these return the top level groups - you can navigate down through each one to get the other lower level headers and finally the columns at the bottom. |
getCenterDisplayedColumnGroups | Same as getAllDisplayedColumnGroups but just for the center portion of the grid. |
getLeftDisplayedColumnGroups | Same as getAllDisplayedColumnGroups but just for the pinned left portion of the grid. |
getRightDisplayedColumnGroups | Same as getAllDisplayedColumnGroups but just for the pinned right portion of the grid. |