Completed
Last Updated: 22 Dec 2017 09:34 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 27 Nov 2017 13:41
Category: GridView
Type: Bug Report
1
FIX. RadGridView - autocomplete popup is not closed in GridViewComboBoxColumn when navigating with arrow keys to the next cell
To reproduce: please refer to the attached gif file and sample project.

Workaround:

        private void radGridView1_CellEndEdit(object sender, GridViewCellEventArgs e)
        {
            RadDropDownListEditor editor = e.ActiveEditor as RadDropDownListEditor;
            if (editor!=null)
            {
                RadDropDownListEditorElement el = editor.EditorElement as RadDropDownListEditorElement;
                el.AutoCompleteSuggest.DropDownList.ClosePopup();
            } 
        }
0 comments