This question is locked. New answers and comments are not allowed.
The following code from the Examples solutions works great:
... But I want to enable Autocomplete on that editor combobox, how can I access the editor's properties to do this?
Thanks in advance,
ComboBoxEditorSettings
comboBoxEditorSettings = new ComboBoxEditorSettings();
comboBoxEditorSettings.ItemsSource = GetCountries();
((
GridViewDataColumn) this.radGridViewEditors.Columns[2]).EditorSettings = comboBoxEditorSettings;
... But I want to enable Autocomplete on that editor combobox, how can I access the editor's properties to do this?
Thanks in advance,