Home › Forums › WinForms controls › Xceed Grid for WinForms › ComboBoxEditor will not display › Reply To: ComboBoxEditor will not display
You need to feed the ComboBox with its own DataSource. The ShipCountry in the Order table is a string field, so the ComboBox has no data to draw from.
For example, you could bind to the ShipCountry of the Order table :
ComboBoxEditor editor = new ComboBoxEditor( dataSet11.Orders, “”, “ShipCountry”, “%ShipCountry%” );
gridControl1.Columns[ “ShipCountry” ].CellEditorManager = editor;
Imported from legacy forums. Posted by André (had 314 views)