Freeze Columns

Is there a code example that shows how to freeze specific columns so that they do not scroll off the grid? (as per: http://www.syncfusion.com/products/grid/features/grid_feat_29.aspx )

1 Reply

AD Administrator Syncfusion Team January 28, 2004 06:40 PM UTC

You can only freeze columns on the left. (If there is a column in the middle you want frozen, it would have to be moved to the left side of the grid to freeze it.) By default there is 1 frozen column (the row headers). If you want to freeze more, then you set this property. this.grid.Model.Cols.FrozenCount = 1; //freeze 1 additional column

Loader.
Up arrow icon