[]
The number of rows to freeze at the bottom of the grid. These rows will remain visible when scrolling vertically.
The number of columns to freeze on the left side of the grid. These columns will remain visible when scrolling horizontally.
The number of columns to freeze on the right side of the grid. These columns will remain visible when scrolling horizontally.
The number of rows to freeze at the top of the grid. These rows will remain visible when scrolling vertically.
Specifies the frozen options for FlexGrid based controls. The frozen cells feature allows users to freeze rows and columns on all four sides of the grid. This interface defines the structure for specifying the number of frozen rows and columns.
When specifying frozen cells, consider the following:
Freeze 2 rows at the top and 3 columns on the left grid.frozenCells = { top: 2, left: 3 };
Freeze 1 row at the bottom and 2 columns on the right grid.frozenCells = { bottom: 1, right: 2 };