AD
Administrator
Syncfusion Team
September 16, 2003 04:43 PM UTC
Here is something to try. Hide the default row header (col 0). Then set:
this.grid.Model.Cols.FrozenCount = 1;
This should prevent your column 1 from scrolling and it should just display your column 1 values as a fixed column. If you want the cell to appear like a header cell, then set:
this.grid.Binder.InternalColumns[0].StyleInfo.CellType = "Header";
PZ
Peter Zaborski
September 16, 2003 05:55 PM UTC
Good stuff, that did the trick. Thanks.
-Peter