473,498 Members | 1,942 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Recommendations for combo box control

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
Nov 23 '05 #1
7 1564
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:
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

Nov 23 '05 #2
Max
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:
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:
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

Nov 23 '05 #3
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" <rh*****@newsgroups.nospam> wrote in message
news:1b****************************@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

Nov 23 '05 #4
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" <rh*****@newsgroups.nospam> wrote in message
news:1b****************************@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

Nov 23 '05 #5
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 <rh*****@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: rh*****@newsgroups.nospam
| Reply-To: rh*****@newsgroups.nospam
| Organization: RHM Media, LLC
| References: <1b****************************@40tude.net>
<uw*************@TK2MSFTNGP11.phx.gbl>
| Date: Wed, 23 Nov 2005 16:35:10 -0500
| Message-ID: <g7****************************@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" <rh*****@newsgroups.nospam> wrote in message
| > news:1b****************************@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
|

Nov 24 '05 #6
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 <rh*****@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: rh*****@newsgroups.nospam
| Reply-To: rh*****@newsgroups.nospam
| Organization: RHM Media, LLC
| References: <1b****************************@40tude.net>
<uw*************@TK2MSFTNGP11.phx.gbl>
| Date: Wed, 23 Nov 2005 16:35:10 -0500
| Message-ID: <g7****************************@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" <rh*****@newsgroups.nospam> wrote in message
|> news:1b****************************@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
|

Nov 24 '05 #7
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 <rh*****@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: rh*****@newsgroups.nospam
| Reply-To: rh*****@newsgroups.nospam
| Organization: RHM Media, LLC
| References: <1b****************************@40tude.net>
<uw*************@TK2MSFTNGP11.phx.gbl>
<g7****************************@40tude.net>
<mW**************@TK2MSFTNGXA02.phx.gbl>
| Date: Thu, 24 Nov 2005 00:02:14 -0500
| Message-ID: <35****************************@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 <rh*****@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: rh*****@newsgroups.nospam
| >| Reply-To: rh*****@newsgroups.nospam
| >| Organization: RHM Media, LLC
| >| References: <1b****************************@40tude.net>
| > <uw*************@TK2MSFTNGP11.phx.gbl>
| >| Date: Wed, 23 Nov 2005 16:35:10 -0500
| >| Message-ID: <g7****************************@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" <rh*****@newsgroups.nospam> wrote in message
| >|> news:1b****************************@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
| >|
|

Nov 24 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2706
by: Tim Marshall | last post by:
Does anyone have recommendations for the maximum number of records a combo box should return? I'm not talking about limits in Access itself, but rather for UI purposes, ie, what the average user...
1
1412
by: Edward | last post by:
I have encountered a combo box acting with a mind of its own in a VB.NET Windows app. I have a wizard consisting of a tab control; depending on which page is being displayed the tabs are added...
0
2913
by: Jeremy Wallace | last post by:
Folks, Here's a write-up I did for our developer wiki. I don't know if the whole rest of the world has already figured out how to do this, but I hadn't ever seen it implemented, and had spent a...
0
1578
by: Tom | last post by:
I have some very strange issues with combo boxes on a tab control. Here's the scenario: I have a Windows Forms form that has a tab control on it, with two (2) tabs. Tab 2 happens to have a number...
8
2178
by: AA Arens | last post by:
Hi I do have a products table and products-parts table in my Access 2003 database and log all services into a form. I do have at least the following two combo boxes on my form: - Choose...
4
64522
Rabbit
by: Rabbit | last post by:
Cascading Combo/List Boxes This tutorial is to guide you in the creation of Cascading combo/list boxes. That is when you have multiple combo/list boxes where the selection of an option in one...
6
3666
by: Dave | last post by:
I want to put the information that the user selects in my combo boxes into a subform that lies on the same form as the combo boxes. Thanks for your help already, Dave
13
8596
by: mirandacascade | last post by:
I want to set things up such that a section of code will have been executed by the time one clicks on the drop down arrow on a combo box control. Currently, that section of code resides in the...
0
7002
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7165
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7203
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5462
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4908
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3093
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3081
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
656
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
290
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.