Basic DropDownGrid Cell

Whats the SIMPLEST way to put a dropdowngrid in a gridgroupingcontrol cell? I can''t find any samples of what a basic cell without having to create a custom cell type..

1 Reply

AD Administrator Syncfusion Team August 26, 2005 06:15 PM UTC

Tiy can use a GridListControl to display a multicolumn dropdown. gridColumnDescriptor5.Appearance.AnyRecordFieldCell.CellType = "GridListControl"; gridColumnDescriptor5.Appearance.AnyRecordFieldCell.DataSource = this.shippersDataSet1.Shippers; gridColumnDescriptor5.Appearance.AnyRecordFieldCell.DisplayMember = "CompanyName"; gridColumnDescriptor5.Appearance.AnyRecordFieldCell.ValueMember = "ShipperID";

Loader.
Up arrow icon