JJ
Jisha Joy
Syncfusion Team
July 9, 2009 12:10 PM UTC
Hi Alomgir,
To hide a column in a DropDownListControl cell, you have to get at the embedded Grid that the GridListControl uses to manage things. Below is a code snippet:
GridDropDownGridListControlCellRenderer cr = (GridDropDownGridListControlCellRenderer) this.gridControl1.CellRenderers["GridListControl"];
cr.ListControlPart.Grid.Cols.Hidden[2] = true; //hide column 2....
Please let me know if this helps.
Regards,
Jisha