Locked Columns
Locked (frozen) columns are the columns that are visible at all times while the user scrolls the Kendo UI Grid for Angular horizontally.
Prerequisites
The Kendo UI Grid for Angular enables you to toggle the locked (frozen) state of its columns.
To allow the component to adjust the layout of its frozen and non-frozen columns and for the feature to work properly, make sure that:
- Scrolling is enabled.
- The
height
option of the Grid is set. - The widths of all Grid columns are explicitly set in pixels so that the Grid is able to adjust the layout of the locked and unlocked columns.
- The total width of the locked columns does not exceed the width of the available viewport or the width of the Grid, if
width
is explicitly set.
Setup
The Grid supports locked columns on the left side of the table (or on the right side when the Grid is in RTL mode).
Known Limitations
- The detail template does not work with locked columns.
- When you lock columns in the Grid, leave at least one unlocked column as well. If you need to hide all non-locked columns, unlock one of the locked columns before you hide the last non-locked column.
- It is not possible to touch-scroll frozen columns, because they are wrapped in a container with the
overflow:hidden
style. To work around this limitation on desktop devices, use thewheel
event. Currently, the Grid does not support such a workaround for touch devices. - If the Grid has its
grouping
feature enabled, the group header row will be truncated to the locked section.