GGC

How do I convert a column in the GGC to a combobox? Is this possible. Thanks.

1 Reply

RC Rajadurai C Syncfusion Team June 19, 2009 03:25 PM UTC

Hi John,

Thanks for your interest in Syncfusion Products.

Yes. It is possible. A column in ggc can be set to combobox celltype through the following single line of code.

//In C#
this.gridGroupingControl1.TableDescriptor.Columns[0].Appearance.AnyRecordFieldCell.CellType = "ComboBox";


//In VB
Dim Me.gridGroupingControl1.TableDescriptor.Columns(0).Appearance.AnyRecordFieldCell.CellType = "ComboBox"

This sets the combobox celltype to the recordcells in grid for the first column.

Regards,
Rajadurai

Loader.
Up arrow icon