JJ
Jisha Joy
Syncfusion Team
June 29, 2009 12:53 PM UTC
Hi Awanish,
You could have combobox cells inside GridGroupingControl by setting the CellType to ComboBox and specifying the ChoiceList. See the code:
StringCollection sc = new StringCollection();
sc.Add("One");
sc.Add("two");
this.gridGroupingControl1.TableDescriptor.Columns[2].Appearance.AnyRecordFieldCell.CellType = "ComboBox";
this.gridGroupingControl1.TableDescriptor.Columns[2].Appearance.AnyRecordFieldCell.ChoiceList = sc;
Let me know if this helps.
Regards,
Jisha