Freezing Cols & Rows in GridGroupingControl

Hello All, Is there any method to freeze cols /rows in GridGroupingControl similar to gridDataBoundGrid1.Model.Rows.FreezeSelection() gridDataBoundGrid1.Model.Rows.RestoreFrozen(); gridDataBoundGrid1.Model.Cols.FreezeSelection() gridDataBoundGrid1.Model.Cols.RestoreFrozen(); Please suggest me the solution. Thanks

1 Reply

AD Administrator Syncfusion Team June 29, 2005 06:07 PM UTC

In just a flat grid with no grouping, you can do this to freeze say, 2 columns. this.gridGroupingControl1.TableModel.Cols.FrozenCount = 2; For flat grouped columns, you would have to increase this number by 1 for each grouping. There is currently no way to freeze columns in nested tabled or to freeze rows.

Loader.
Up arrow icon