Connecting Tech Pros Worldwide Help | Site Map

Recommendations for combo box control

Hans Merkl
Guest
 
Posts: n/a
#1: Nov 23 '05
Hi,

Can anybody recommend a combo box control (textfield + dropdown list) for
ASP.NET?

I have looked at some products and it seems they all have some problems. I
haven't yet found a combo box control that works on IE, Firefox and Opera.

I am open to commercial and open source projects.

Thanks

Hans
Curt Koppang
Guest
 
Posts: n/a
#2: Nov 23 '05

re: Recommendations for combo box control


We started with this one (http://www.codeproject.com/aspnet/combobox.asp) and
modified it to be more what we wanted. It wasn't very hard.

I asked the all knowing oracle (aka Google) and it came back with a handful
of controls for sale if you don't want to take it on yourself. Some of which
are on the ASP.NET site.

Hope this helps,
curt



"Hans Merkl" wrote:
[color=blue]
> Hi,
>
> Can anybody recommend a combo box control (textfield + dropdown list) for
> ASP.NET?
>
> I have looked at some products and it seems they all have some problems. I
> haven't yet found a combo box control that works on IE, Firefox and Opera.
>
> I am open to commercial and open source projects.
>
> Thanks
>
> Hans
>[/color]
Max
Guest
 
Posts: n/a
#3: Nov 23 '05

re: Recommendations for combo box control


I have looked at this control but unfortuntely it's IE only :-(

Cheers

Hans


On Wed, 23 Nov 2005 08:19:21 -0800, Curt Koppang wrote:
[color=blue]
> We started with this one (http://www.codeproject.com/aspnet/combobox.asp) and
> modified it to be more what we wanted. It wasn't very hard.
>
> I asked the all knowing oracle (aka Google) and it came back with a handful
> of controls for sale if you don't want to take it on yourself. Some of which
> are on the ASP.NET site.
>
> Hope this helps,
> curt
>
>
>
> "Hans Merkl" wrote:
>[color=green]
>> Hi,
>>
>> Can anybody recommend a combo box control (textfield + dropdown list) for
>> ASP.NET?
>>
>> I have looked at some products and it seems they all have some problems. I
>> haven't yet found a combo box control that works on IE, Firefox and Opera.
>>
>> I am open to commercial and open source projects.
>>
>> Thanks
>>
>> Hans
>>[/color][/color]
Bruce Barker
Guest
 
Posts: n/a
#4: Nov 23 '05

re: Recommendations for combo box control


all implemenations of a combobox require heavy use of client script and good
knowledge of browser quirks to handle keyboard input, sizing, etc.

you are better off to not fight the browser and use a different interface.

-- bruve (sqlwork.com)


"Hans Merkl" <rhmware@newsgroups.nospam> wrote in message
news:1b91q19912hq3.dc64kiujpodv.dlg@40tude.net...[color=blue]
> Hi,
>
> Can anybody recommend a combo box control (textfield + dropdown list) for
> ASP.NET?
>
> I have looked at some products and it seems they all have some problems. I
> haven't yet found a combo box control that works on IE, Firefox and Opera.
>
> I am open to commercial and open source projects.
>
> Thanks
>
> Hans[/color]


Hans Merkl
Guest
 
Posts: n/a
#5: Nov 23 '05

re: Recommendations for combo box control


Do you have any suggestions for how to replace a combox box?
In my app users can directly type the number of an office or select the
name from a list box. I guess the common approach would be to offer an
input field and a button that offers the list in a separate window. That
would work but it's much slower than a combo box.

Hans

[color=blue]
> all implemenations of a combobox require heavy use of client script and good
> knowledge of browser quirks to handle keyboard input, sizing, etc.
>
> you are better off to not fight the browser and use a different interface.
>
> -- bruve (sqlwork.com)
>
>
> "Hans Merkl" <rhmware@newsgroups.nospam> wrote in message
> news:1b91q19912hq3.dc64kiujpodv.dlg@40tude.net...[color=green]
>> Hi,
>>
>> Can anybody recommend a combo box control (textfield + dropdown list) for
>> ASP.NET?
>>
>> I have looked at some products and it seems they all have some problems. I
>> haven't yet found a combo box control that works on IE, Firefox and Opera.
>>
>> I am open to commercial and open source projects.
>>
>> Thanks
>>
>> Hans[/color][/color]
Steven Cheng[MSFT]
Guest
 
Posts: n/a
#6: Nov 24 '05

re: Recommendations for combo box control


Hi Hans,

I think Bruces's consideration of the difficulty for supporting complex
scripting in multiple browsers are reasonable. For your scenario, do you
think it possible that we just use a TextBox with another ListBox control
instead of a encapsulated ComboBox control? Since most web form combobox
controls are built by textbox+listbox, also if we just use a textbox and
listbox(doesn't bind them too tight...), we can use some simple client
script to make them communicate. Also, your idea of displaying a separate
page for selecting item is one possible approach.

If there're any other consideration or ideas, please feel free to post here.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| From: Hans Merkl <rhmware@newsgroups.nospam>
| Subject: Re: Recommendations for combo box control
| User-Agent: 40tude_Dialog/2.0.14.1
| MIME-Version: 1.0
| Content-Type: text/plain; charset="us-ascii"
| Content-Transfer-Encoding: 7bit
| Sender: rhmware@newsgroups.nospam
| Reply-To: rhmware@newsgroups.nospam
| Organization: RHM Media, LLC
| References: <1b91q19912hq3.dc64kiujpodv.dlg@40tude.net>
<uwAvDIF8FHA.444@TK2MSFTNGP11.phx.gbl>
| Date: Wed, 23 Nov 2005 16:35:10 -0500
| Message-ID: <g72gc5kspw0v.wtihvx79i4t3$.dlg@40tude.net>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: pcp0011547978pcs.anapol01.md.comcast.net 68.54.166.32
| Lines: 1
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msft ngp13.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:360579
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Do you have any suggestions for how to replace a combox box?
| In my app users can directly type the number of an office or select the
| name from a list box. I guess the common approach would be to offer an
| input field and a button that offers the list in a separate window. That
| would work but it's much slower than a combo box.
|
| Hans
|
|
| > all implemenations of a combobox require heavy use of client script and
good
| > knowledge of browser quirks to handle keyboard input, sizing, etc.
| >
| > you are better off to not fight the browser and use a different
interface.
| >
| > -- bruve (sqlwork.com)
| >
| >
| > "Hans Merkl" <rhmware@newsgroups.nospam> wrote in message
| > news:1b91q19912hq3.dc64kiujpodv.dlg@40tude.net...
| >> Hi,
| >>
| >> Can anybody recommend a combo box control (textfield + dropdown list)
for
| >> ASP.NET?
| >>
| >> I have looked at some products and it seems they all have some
problems. I
| >> haven't yet found a combo box control that works on IE, Firefox and
Opera.
| >>
| >> I am open to commercial and open source projects.
| >>
| >> Thanks
| >>
| >> Hans
|

Hans Merkl
Guest
 
Posts: n/a
#7: Nov 24 '05

re: Recommendations for combo box control


On Thu, 24 Nov 2005 01:24:33 GMT, Steven Cheng[MSFT] wrote:
The combo box is just such a useful control. Could you imagine MS Access
forms without combo boxes? Access would lose half of its productivity.

Hans

[color=blue]
> Hi Hans,
>
> I think Bruces's consideration of the difficulty for supporting complex
> scripting in multiple browsers are reasonable. For your scenario, do you
> think it possible that we just use a TextBox with another ListBox control
> instead of a encapsulated ComboBox control? Since most web form combobox
> controls are built by textbox+listbox, also if we just use a textbox and
> listbox(doesn't bind them too tight...), we can use some simple client
> script to make them communicate. Also, your idea of displaying a separate
> page for selecting item is one possible approach.
>
> If there're any other consideration or ideas, please feel free to post here.
>
> Regards,
>
> Steven Cheng
> Microsoft Online Support
>
> Get Secure! www.microsoft.com/security
> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>
> --------------------
>| From: Hans Merkl <rhmware@newsgroups.nospam>
>| Subject: Re: Recommendations for combo box control
>| User-Agent: 40tude_Dialog/2.0.14.1
>| MIME-Version: 1.0
>| Content-Type: text/plain; charset="us-ascii"
>| Content-Transfer-Encoding: 7bit
>| Sender: rhmware@newsgroups.nospam
>| Reply-To: rhmware@newsgroups.nospam
>| Organization: RHM Media, LLC
>| References: <1b91q19912hq3.dc64kiujpodv.dlg@40tude.net>
> <uwAvDIF8FHA.444@TK2MSFTNGP11.phx.gbl>
>| Date: Wed, 23 Nov 2005 16:35:10 -0500
>| Message-ID: <g72gc5kspw0v.wtihvx79i4t3$.dlg@40tude.net>
>| Newsgroups: microsoft.public.dotnet.framework.aspnet
>| NNTP-Posting-Host: pcp0011547978pcs.anapol01.md.comcast.net 68.54.166.32
>| Lines: 1
>| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msft ngp13.phx.gbl
>| Xref: TK2MSFTNGXA02.phx.gbl
> microsoft.public.dotnet.framework.aspnet:360579
>| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>|
>| Do you have any suggestions for how to replace a combox box?
>| In my app users can directly type the number of an office or select the
>| name from a list box. I guess the common approach would be to offer an
>| input field and a button that offers the list in a separate window. That
>| would work but it's much slower than a combo box.
>|
>| Hans
>|
>|
>|> all implemenations of a combobox require heavy use of client script and
> good
>|> knowledge of browser quirks to handle keyboard input, sizing, etc.
>|>
>|> you are better off to not fight the browser and use a different
> interface.
>|>
>|> -- bruve (sqlwork.com)
>|>
>|>
>|> "Hans Merkl" <rhmware@newsgroups.nospam> wrote in message
>|> news:1b91q19912hq3.dc64kiujpodv.dlg@40tude.net...
>|>> Hi,
>|>>
>|>> Can anybody recommend a combo box control (textfield + dropdown list)
> for
>|>> ASP.NET?
>|>>
>|>> I have looked at some products and it seems they all have some
> problems. I
>|>> haven't yet found a combo box control that works on IE, Firefox and
> Opera.
>|>>
>|>> I am open to commercial and open source projects.
>|>>
>|>> Thanks
>|>>
>|>> Hans
>|[/color]
Steven Cheng[MSFT]
Guest
 
Posts: n/a
#8: Nov 24 '05

re: Recommendations for combo box control


Thanks for the quick response Hans,

Yes, I totally agress with you on the importance of Combobox control,
however most cases are for desktop in-memory application (Office, winform,
.....). For ASP.NET application it is an abstract layer over the raw HTTP
request/response model and HTML elements, most of the ASP.NET controls just
mapped to html elements and some are encapsulate mutiple of the html
elements. And since the HTML model doesn't provide an HTML combobox
element, what we have to do is manually create such functionality through
combining other html element ( input text field and <select> list...) and
script code... However, since mutiple browsers has heterogenous on script
supporting, it makes creating a perfect composite control more difficult.
So what we can do is using the existing controls or elements to make them
work together ( those 3rd party combobox webserver control based on this
...)

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| From: Hans Merkl <rhmware@newsgroups.nospam>
| Subject: Re: Recommendations for combo box control
| User-Agent: 40tude_Dialog/2.0.14.1
| MIME-Version: 1.0
| Content-Type: text/plain; charset="us-ascii"
| Content-Transfer-Encoding: 7bit
| Sender: rhmware@newsgroups.nospam
| Reply-To: rhmware@newsgroups.nospam
| Organization: RHM Media, LLC
| References: <1b91q19912hq3.dc64kiujpodv.dlg@40tude.net>
<uwAvDIF8FHA.444@TK2MSFTNGP11.phx.gbl>
<g72gc5kspw0v.wtihvx79i4t3$.dlg@40tude.net>
<mWMGYXJ8FHA.4000@TK2MSFTNGXA02.phx.gbl>
| Date: Thu, 24 Nov 2005 00:02:14 -0500
| Message-ID: <35kfr6frhur0.1wdolrr0bm5ks.dlg@40tude.net>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: pcp0011547978pcs.anapol01.md.comcast.net 68.54.166.32
| Lines: 1
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:360626
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| On Thu, 24 Nov 2005 01:24:33 GMT, Steven Cheng[MSFT] wrote:
| The combo box is just such a useful control. Could you imagine MS Access
| forms without combo boxes? Access would lose half of its productivity.
|
| Hans
|
|
| > Hi Hans,
| >
| > I think Bruces's consideration of the difficulty for supporting complex
| > scripting in multiple browsers are reasonable. For your scenario, do
you
| > think it possible that we just use a TextBox with another ListBox
control
| > instead of a encapsulated ComboBox control? Since most web form
combobox
| > controls are built by textbox+listbox, also if we just use a textbox
and
| > listbox(doesn't bind them too tight...), we can use some simple client
| > script to make them communicate. Also, your idea of displaying a
separate
| > page for selecting item is one possible approach.
| >
| > If there're any other consideration or ideas, please feel free to post
here.
| >
| > Regards,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| > --------------------
| >| From: Hans Merkl <rhmware@newsgroups.nospam>
| >| Subject: Re: Recommendations for combo box control
| >| User-Agent: 40tude_Dialog/2.0.14.1
| >| MIME-Version: 1.0
| >| Content-Type: text/plain; charset="us-ascii"
| >| Content-Transfer-Encoding: 7bit
| >| Sender: rhmware@newsgroups.nospam
| >| Reply-To: rhmware@newsgroups.nospam
| >| Organization: RHM Media, LLC
| >| References: <1b91q19912hq3.dc64kiujpodv.dlg@40tude.net>
| > <uwAvDIF8FHA.444@TK2MSFTNGP11.phx.gbl>
| >| Date: Wed, 23 Nov 2005 16:35:10 -0500
| >| Message-ID: <g72gc5kspw0v.wtihvx79i4t3$.dlg@40tude.net>
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| NNTP-Posting-Host: pcp0011547978pcs.anapol01.md.comcast.net
68.54.166.32
| >| Lines: 1
| >| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msft ngp13.phx.gbl
| >| Xref: TK2MSFTNGXA02.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:360579
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| Do you have any suggestions for how to replace a combox box?
| >| In my app users can directly type the number of an office or select the
| >| name from a list box. I guess the common approach would be to offer an
| >| input field and a button that offers the list in a separate window.
That
| >| would work but it's much slower than a combo box.
| >|
| >| Hans
| >|
| >|
| >|> all implemenations of a combobox require heavy use of client script
and
| > good
| >|> knowledge of browser quirks to handle keyboard input, sizing, etc.
| >|>
| >|> you are better off to not fight the browser and use a different
| > interface.
| >|>
| >|> -- bruve (sqlwork.com)
| >|>
| >|>
| >|> "Hans Merkl" <rhmware@newsgroups.nospam> wrote in message
| >|> news:1b91q19912hq3.dc64kiujpodv.dlg@40tude.net...
| >|>> Hi,
| >|>>
| >|>> Can anybody recommend a combo box control (textfield + dropdown
list)
| > for
| >|>> ASP.NET?
| >|>>
| >|>> I have looked at some products and it seems they all have some
| > problems. I
| >|>> haven't yet found a combo box control that works on IE, Firefox and
| > Opera.
| >|>>
| >|>> I am open to commercial and open source projects.
| >|>>
| >|>> Thanks
| >|>>
| >|>> Hans
| >|
|

Closed Thread