Hi,
I have a RadGridView which uses a GridViewComboBoxColumn, I populate the combo box list at run time using the CellEditorInitialized event handler. My issue is that when the user selects on a new item in the combobox and then clicks on a menu item (such as FileSave) or rad ribbon button then the new combo value is discarded. I notice the CellEndEdit event is also not fired.
If I select another cell in the grid then everything works as expected (ie CellEndEdit event is fired)
Is this a known issue and is there a workaround I could use ?
Or is it possible to always close the drop down list and call EndEdit when a selection is made?
Regards
Toby
Found a workable solution. I'm now creating an event handler for DropDownListEditorElement.SelectedValueChanged from within CellEditorInitialised which in my case sets the underlying data to the value selected.