Hi,
Aft
After experiencing a crash when pressing any alpha-numeric key on a cell containing a VirtualGridDropDownListEditor, I spotted an error in Telerik source code at file RadGridView\VirtualGrid\Input\VirtualGridInputBehavior.cs (around line 1441) :
protected virtual bool HandleAlphaNumericKey(KeyPressEventArgs keys){ ... else if (this.GridElement.ActiveEditor is VirtualGridDropDownListEditor) { string symbol = keys.KeyChar.ToString(); RadDropDownListEditor editor = this.GridElement.ActiveEditor as RadDropDownListEditor; RadDropDownListEditorElement element = editor.EditorElement as RadDropDownListEditorElement; if ((element.AutoCompleteMode & AutoCompleteMode.Append) == AutoCompleteMode.Append) { ...
The editor variable should be cast as VirtualGridDropDownListEditor
Just to let you know for next releases
Sorry if bug has already been spotted and fixed :)
Regards
