AD
Administrator
Syncfusion Team
March 1, 2007 09:23 PM UTC
Hi Joel,
You can use the RemoveAt and Insert method of the GridVisibleColumnCollection to hide and show the column at required postion. Here is a code snippet.
//Hide the column.
this.gridGroupingControl1.TableDescriptor.VisibleColumns.RemoveAt(1);
//show the column at specific position.
this.gridGroupingControl1.TableDescriptor.VisibleColumns.Insert(1,"ColumnName");
Best regards,
Haneef