Make first column non scrollable in a GridDataBoundGrid

Hi, I would like to make first column non scrollable in a GridDataBoundGrid. How do I make this. Thanks. Soul.

1 Reply

AD Administrator Syncfusion Team June 19, 2006 03:38 PM UTC

Hi Souleymane, You need to use the FreezeRange method for making the nonscrollabel column/row. Here is a code snippet //For First column. this.gridDataBoundGrid1.Model.Cols.FreezeRange(1,1); //For First Row this.gridDataBoundGrid1.Model.Rows.FreezeRange(1,1); Let me know if this helps, Regards, Haneef

Loader.
Up arrow icon