How do you hide a column in a GridDataBoundGrid?

How do you change the visibility of a column in a GidDataBoundGrid programmatically?

1 Reply

AD Administrator Syncfusion Team March 14, 2004 07:03 AM UTC

Here is one way: Me.GridDataBoundGrid1.Model.Cols.Hidden(nCol) = True or the same in C#. this.gridDataBoundGrid1.Model.COls.Hidden[nCol] = true;

Loader.
Up arrow icon