Hi.
My interpretation of a combo box is, that one can either select an element from a predefined list - or just enter a value directly.
However, the GridViewComboBoxColumn seems not to work this way. I do have:
My interpretation of a combo box is, that one can either select an element from a predefined list - or just enter a value directly.
However, the GridViewComboBoxColumn seems not to work this way. I do have:
RadDropDownListEditor le = (RadDropDownListEditor)this.MasterTemplate.ActiveEditor;
RadDropDownListEditorElement ee = (RadDropDownListEditorElement)le.EditorElement;
le.DropDownStyle =
RadDropDownStyle.DropDown;
ee.AutoCompleteMode =
AutoCompleteMode.None;
But whatever entered directly in the combo box disappears when I move to next column.
Is there a way to meet my expectations so if the user enters data directly, it'd be considered text and applied to the field when the editor closes.
I need this behaviour cause sometimes data has to be selected from a list - and sometimes they should be entered directly...
Jeppe