Does .NET have a feature so that I can create a combo box where the user
is NOT limited to the contents of the list? In other words, can I
create a drop-down where, besides the option of selecting from the lists
values, the user can also enter their own text?
Thanks in advance.
Shelly - 02 Sep 2007 21:57 GMT
> Does .NET have a feature so that I can create a combo box where the user
> is NOT limited to the contents of the list? In other words, can I create
> a drop-down where, besides the option of selecting from the lists values,
> the user can also enter their own text?
>
> Thanks in advance.
Thanks is what a combo box is defined to be. When the user can only pick
from a given list, it is called a select box.
Shellt
Göran Andersson - 02 Sep 2007 23:37 GMT
> Does .NET have a feature so that I can create a combo box where the user
> is NOT limited to the contents of the list? In other words, can I
> create a drop-down where, besides the option of selecting from the lists
> values, the user can also enter their own text?
>
> Thanks in advance.
There is no combo box in html.
You would have to make your own, perhaps by having an option in the
select that replaces it with a textbox.

Signature
Göran Andersson
_____
http://www.guffa.com
Shelly - 03 Sep 2007 00:26 GMT
>> Does .NET have a feature so that I can create a combo box where the user
>> is NOT limited to the contents of the list? In other words, can I create
[quoted text clipped - 7 lines]
> You would have to make your own, perhaps by having an option in the select
> that replaces it with a textbox.
Here is an example of one:
http://javascript.about.com/library/blnav7.htm
Shelly