Click here to Skip to main content
15,886,757 members
Articles / Web Development / ASP.NET
Article

ComboBox Control for ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.83/5 (44 votes)
5 May 20066 min read 711.6K   4.6K   98   175
Provides ComboBox functionality for your ASP.NET web pages, just like the ComboBox so common in WinForms. Now with auto-fill support as well.

Introduction

Using server controls in ASP.NET is pretty slick. Having a robust programming model to interact with your HTML elements surely makes life nice. While ASP.NET ships with all of the most common server controls that you might need, it is always fun to add to your toolbox. This ComboBox control mimics the functionality of ComboBoxes from the WinForms world - letting the user select from a pre-defined list of choices or type in a new value.

Alternatives

This is not the first or only implementation of ComboBox functionality on the internet, or even on Code Project. This article provided one solution, but it was based on Microsoft behaviors, making it IE-specific, and it used custom images to simulate the dropdown arrow.

This article provided a solution that visually looked like a real <SELECT> box, but it relied on behaviors as well - but I wanted a complete cross-browser support and didn't want to deal with the extra .htc file.

I also stumbled across this implementation from MetaBuilders. It was cross-browser compatible and degraded gracefully, but it still didn't look like a normal HTML element and it had an annoying 'flash' as it re-drew in the browser when it was loaded.

Finally, I found a very slick implementation from Opinionated Geek that seemed to be what I was looking for. It looked just like a real <SELECT> box and seemed to degrade gracefully in older browsers. However, it was a commercial product and I wanted something I could tweak myself. I thought to myself - "Guess I will just have to write my own.". So I did.

Highlights

When developing this control, I had several design goals in my mind:

  • Must be cross-browser compatible with all current-generation browsers.
  • Must degrade gracefully (and still provide basic functionality) in older browsers.
  • Must be self-contained so that it could just be dropped on the page and 'work'.
  • Must support all of the properties of the standard DropDownList control, including all visual styles, data binding, and working with Validator controls.
  • Must not have any layout display limitations. (I.e. absolute positioning, side-by-side positioning, etc.)

Hopefully, when you download and try the attached code, you will find that all of these criteria have been met. The sample web page illustrates several scenarios in which the ComboBox control can be used. That said, I have not tried every single possible crazy scenario that could exist. If you find something that this control cannot do or suggestions for improvement, post your comments here and I will update the code.

Update - AutoFill

Several people asked me if this control supported the 'auto-fill' technique like that found at Google Suggest. I have added support for a simple version of this technique. By setting the EnableAutoFill property to true, the control will automatically fill in with the pre-defined values as the user types. (Unlike Google Suggest, however, the option list is not dynamically generated with each keystroke). Let me know how you like it.

Update - Design-time support and more

My bad on this one - I neglected to add the design-time attributes to the class files that I uploaded. This has been rectified, so now the control has full design-time support. Also, I fixed the issue that made the AutoFill case-sensitive. Please download the code again to get both of these fixes.

Update - .SelectedItem and .SelectedValue properties

Based on the suggestion and code sample from Pinndulum (see posts below), I have uploaded a new version of the control that better utilizes the .SelectedItem and .SelectedValue properties of the control. Now the text value and the value of the selected ListItem are both available programmatically. Thanks Pinndulum!

Update - SelectedIndexChanged not firing - fixed

When the control was set to AutoPostBack, the SelectedIndexChanged event was not being fired. This was due to some JavaScript that resets the selectedIndex property onchange. Although that is technically the correct behavior, having the SelectedIndexChanged event was more important, so I commented out the offending line. (Thanks to CGRothrock for finding this bug).

Update - Added support for 'GridLayout'

When the control was placed on pages that were using the GridLayout format, the control was not rendering in the correct spot. The bug was due to the fact that the designer-applied positioning was lost at render time. (Thanks to TWheelhouse for finding this bug and suggesting the fix).

Update - Added support for external JavaScript plus bug fixes

After several suggestions, I have finally added support for an external JavaScript file. If you set the ExternalResourcePath property to the location of a valid .js file, the control will use that instead of emitting the JavaScript inline. Also, I think the Firefox rendering/selectedIndex problem finally has an acceptable solution. Thanks to all who helped with ideas and fixes for this update.

Credits

My thanks goes to the authors of the other articles mentioned in this article for providing me the idea to create this control. Special credit must be given to the developers at Opinionated Geek for providing such a slick implementation that I had something to aspire to. Reviewing some of their JavaScript also provided valuable advice on how to get that pesky 1-pixel spacing issue resolved in IE browsers. =)

History

  • 05.27.2005
    • Initial version released.
  • 06.02.2005
    • New version with Auto-Fill support released.
    • New version with design-time support released.
  • 06.03.2005
    • New version with Pinndulum's suggested changes for .SelectedItem and .SelectedValue properties.
    • New version that removes the restriction that the .Width property must be set to a value expressed in pixels.
  • 06.06.2005
    • Fixed two bugs: one dealing with the SelectedIndexChanged event not firing and the other dealing with the ItemCommand event not firing (thanks to CGRothrock and Farooq Azam for finding these).
  • 06.07.2005
    • Fixed a bug that made the control incompatible with 'GridLayout'. (Thanks to TWheelhouse for finding this bug and suggesting the fix.)
  • 06.09.2005
    • Fixed a bug that caused some funny rendering in Firefox (a bug that was introduced when the .SelectedValue fix was made a few days ago). Now both items should be fixed.
  • 06.10.2005
    • New version supports an option for linking to an external JavaScript instead of emitting it inline. Also enhances the Firefox rendering/selectedIndex issue (thanks to Bryan Pino for the suggested fixes).
  • 06.13.2005
    • New version separates the ComboBox control code out into a stand-alone project and includes a pre-compiled Release version of the control. Also fixed a bug where the ExternalResourcePath property was not visible in the designer.
  • 06.17.2005
    • Fixed a bug with the MaxLength property when set via the designer (thanks to RSBCTrumpet for finding this bug).

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Maximum Length Pin
Athrunxx9-Apr-07 17:18
Athrunxx9-Apr-07 17:18 
GeneralHelp with download Pin
bnaugle10-Jun-05 5:29
bnaugle10-Jun-05 5:29 
GeneralRe: Help with download Pin
brian dunnington10-Jun-05 6:31
brian dunnington10-Jun-05 6:31 
GeneralRe: Help with download Pin
wal29410-Jun-05 15:04
wal29410-Jun-05 15:04 
GeneralRe: Help with download Pin
brian dunnington13-Jun-05 7:03
brian dunnington13-Jun-05 7:03 
GeneralselectedIndexChanged event with autofill Pin
Antoine Marie.10-Jun-05 5:02
sussAntoine Marie.10-Jun-05 5:02 
GeneralRe: selectedIndexChanged event with autofill Pin
brian dunnington10-Jun-05 6:40
brian dunnington10-Jun-05 6:40 
GeneralRe: selectedIndexChanged event with autofill Pin
Devasp20-Feb-06 1:28
Devasp20-Feb-06 1:28 
GeneralRe: selectedIndexChanged event with autofill Pin
xsynek8-Apr-06 3:48
xsynek8-Apr-06 3:48 
Generalindesign time support Pin
wal29410-Jun-05 1:57
wal29410-Jun-05 1:57 
GeneralRe: indesign time support Pin
brian dunnington10-Jun-05 4:53
brian dunnington10-Jun-05 4:53 
GeneralselectedIndex problem with Firefox Pin
Bryan Pino8-Jun-05 11:13
Bryan Pino8-Jun-05 11:13 
GeneralRe: selectedIndex problem with Firefox Pin
Bryan Pino9-Jun-05 7:47
Bryan Pino9-Jun-05 7:47 
GeneralRe: selectedIndex problem with Firefox Pin
brian dunnington9-Jun-05 10:00
brian dunnington9-Jun-05 10:00 
GeneralRe: selectedIndex problem with Firefox Pin
brian dunnington10-Jun-05 6:29
brian dunnington10-Jun-05 6:29 
GeneralExternalResource Pin
BAZ@Huge7-Jun-05 22:01
BAZ@Huge7-Jun-05 22:01 
GeneralRe: ExternalResource Pin
brian dunnington10-Jun-05 6:23
brian dunnington10-Jun-05 6:23 
GeneralRe: ExternalResource Pin
Anonymous11-Jun-05 23:17
Anonymous11-Jun-05 23:17 
GeneralRe: ExternalResource Pin
brian dunnington13-Jun-05 7:01
brian dunnington13-Jun-05 7:01 
GeneralRe: ExternalResource Pin
Anonymous21-Jun-05 22:33
Anonymous21-Jun-05 22:33 
GeneralFlow Layout only? Designer places in Grid layout but displays in flow layout at runtime. Pin
TWheelhouse7-Jun-05 12:15
TWheelhouse7-Jun-05 12:15 
GeneralRe: Flow Layout only? Designer places in Grid layout but displays in flow layout at runtime. Pin
TWheelhouse7-Jun-05 12:20
TWheelhouse7-Jun-05 12:20 
GeneralRe: Flow Layout only? Designer places in Grid layout but displays in flow layout at runtime. Pin
brian dunnington7-Jun-05 12:38
brian dunnington7-Jun-05 12:38 
GeneralRe: Flow Layout only? Designer places in Grid layout but displays in flow layout at runtime. Pin
TWheelhouse7-Jun-05 12:47
TWheelhouse7-Jun-05 12:47 
GeneralRe: Flow Layout only? Designer places in Grid layout but displays in flow layout at runtime. Pin
brian dunnington7-Jun-05 20:32
brian dunnington7-Jun-05 20:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.