Posted 30 July 2026, 1:46 am EST
How to freeze rightmost column in grid. Please share a working demo.
Forums Home / Wijmo / General Discussion
Posted by: sonustarc8623569 on 30 July 2026, 1:46 am EST
Posted 30 July 2026, 1:46 am EST
How to freeze rightmost column in grid. Please share a working demo.
Posted 30 July 2026, 7:59 am EST
Hi,
Wijmo FlexGrid provides the **frozenCells **API, which allows you to freeze rows and columns from different sides of the grid.
The supported operations are:
Freeze columns on the left or right.
Freeze rows at the top or bottom.
Combine one horizontal freeze (either left or right) with one vertical freeze (either top or bottom).
Important: Although the frozenCells API exposes properties for all four sides, FlexGrid supports freezing cells on only two sides simultaneously:
One horizontal side (left or right)
One vertical side (top or bottom)
If both left and right are specified, left takes precedence. Likewise, if both top and bottom are specified, top takes precedence.
For more information, please refer to the API documentation:
API Reference: https://developer.mescius.com/wijmo/api/classes/Wijmo_Grid.Flexgrid.html#frozencells
You can also try the following sample demonstrating the supported freeze configurations:
Working Demo: https://stackblitz.com/edit/vitejs-vite-jgd1lanv?file=src%2Fmain.js,index.html&terminal=dev
Please let us know if you have any further questions.
Regards.