I have been browsing the forums searching for a solution to a DropDownList problem. Our users want to be able to type into the drop down list editor and have the drop down list suggest matches in the list or accept whatever text is typed into the editor portion of the control. We are using a DropDownList with DropDownStyle = DropDown and AutoComplete = Suggest
Currently, when users type in a series of characters in the editor portion of the control which does not match any item in the list, the control refuses to give up focus so users cannot press the "Save" button.
For example, if the list consists of the following items:
ABC123
ABCXYZ
ABQRSTU
A12345
when the user types "A", the control suggests all four choices. When the users types "AB", the control suggests the first three choices. If the user continues typing "ABCD" the control has no suggestions. At this point, the control will refuse to give up focus so the user can press the "Save" button to save the text entered, namely "ABCD".
in short, we want the drop down list to be both a drop down list and a text box.
Any suggestions would be appreciated! Thank you "in advance" for your expertise.
Currently, when users type in a series of characters in the editor portion of the control which does not match any item in the list, the control refuses to give up focus so users cannot press the "Save" button.
For example, if the list consists of the following items:
ABC123
ABCXYZ
ABQRSTU
A12345
when the user types "A", the control suggests all four choices. When the users types "AB", the control suggests the first three choices. If the user continues typing "ABCD" the control has no suggestions. At this point, the control will refuse to give up focus so the user can press the "Save" button to save the text entered, namely "ABCD".
in short, we want the drop down list to be both a drop down list and a text box.
Any suggestions would be appreciated! Thank you "in advance" for your expertise.