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

ASP.NET DropDownList with OptionGroup support

Rate me:
Please Sign up or sign in to vote.
4.81/5 (39 votes)
12 Sep 20061 min read 486.1K   8.7K   108   100
An implementation of a DropDownList Control Adapter which provides OptionGroup support.

Introduction

ASP.NET 2.0, for all its bells and whistles, lacks the odd bit of functionality for reasons completely unknown. One such notable omission is that of OptionGroup (<optgroup>) support in the DropDownList control. For those unfamiliar with the <optgroup> element, it is part of the XHTML standard, and has the effect of categorising items in a <select>, as the following image shows.

Option Groups

When I first began to look for a solution to implement this in ASP.NET, I found very few articles on the topic that offered any viable solution. Another CodeProject member came up with a nice clean solution, but it looked like a lot of code and I was convinced there was an easier way. After reading some comments, it became apparent a Control Adapter was the way to go. Control Adapters are new in ASP.NET 2.0, and allow the developer to override the rendering behaviour of any control, very powerful stuff! Furthermore, Control Adapters are used in conjunction with a browser file, so specific browsers may be targeted, if required. Armed with that knowledge, the solution became simple. The attached download contains the requisite files to implement this solution in your own projects, but for posterity, I paste it here also.

C#
public class DropDownListAdapter : 
       System.Web.UI.WebControls.Adapters.WebControlAdapter {
    protected override void RenderContents(HtmlTextWriter writer) {
        DropDownList list = this.Control as DropDownList;
        string currentOptionGroup;
        List<string> renderedOptionGroups = new List<string>();
        foreach(ListItem item in list.Items) {
            if(item.Attributes["OptionGroup"] == null) {
                RenderListItem(item, writer);
            } else {
                currentOptionGroup = item.Attributes["OptionGroup"];
                if(renderedOptionGroups.Contains(currentOptionGroup)) {
                    RenderListItem(item, writer);
                } else {
                    if(renderedOptionGroups.Count > 0) {
                        RenderOptionGroupEndTag(writer);
                    }
                    RenderOptionGroupBeginTag(currentOptionGroup, 
                                              writer);
                    renderedOptionGroups.Add(currentOptionGroup);
                    RenderListItem(item, writer);
                }
            }
        }
        if(renderedOptionGroups.Count > 0) {
            RenderOptionGroupEndTag(writer);
        }
    }
    private void RenderOptionGroupBeginTag(string name, 
                 HtmlTextWriter writer) {
        writer.WriteBeginTag("optgroup");
        writer.WriteAttribute("label", name);
        writer.Write(HtmlTextWriter.TagRightChar);
        writer.WriteLine();
    }
    private void RenderOptionGroupEndTag(HtmlTextWriter writer) {
        writer.WriteEndTag("optgroup");
        writer.WriteLine();
    }
    private void RenderListItem(ListItem item, 
                 HtmlTextWriter writer) {
        writer.WriteBeginTag("option");
        writer.WriteAttribute("value", item.Value, true);
        if(item.Selected) {
            writer.WriteAttribute("selected", "selected", false);
        }
        foreach(string key in item.Attributes.Keys) {
            writer.WriteAttribute(key, item.Attributes[key]);
        }
        writer.Write(HtmlTextWriter.TagRightChar);
        HttpUtility.HtmlEncode(item.Text, writer);
        writer.WriteEndTag("option");
        writer.WriteLine();
    }
}

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 Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Suggestion&lt;optgroup&gt; support with ASP.net web componenets - An alternate way Pin
Shan Veerakutty12-Sep-11 9:55
Shan Veerakutty12-Sep-11 9:55 
GeneralRe: <optgroup> support with ASP.net web componenets - An alternate way Pin
fengjunkuan20062-Jul-12 23:07
fengjunkuan20062-Jul-12 23:07 
GeneralRe: <optgroup> support with ASP.net web componenets - An alternate way Pin
yoursmuthu12-May-15 5:43
yoursmuthu12-May-15 5:43 
QuestionBinding data from Db Pin
sudheshna1235-Aug-11 20:46
sudheshna1235-Aug-11 20:46 
GeneralCan you specific a license or terms or use... Pin
hhearst24-Apr-11 3:53
hhearst24-Apr-11 3:53 
GeneralRe: Can you specific a license or terms or use... Pin
lotuspro25-Apr-11 11:07
lotuspro25-Apr-11 11:07 
GeneralDropdowlist with optiongroup support using ajax Pin
Member 452360631-Aug-10 0:43
Member 452360631-Aug-10 0:43 
GeneralListBoxAdapter Pin
voleona1-Feb-10 12:51
voleona1-Feb-10 12:51 
QuestionEvent validation errors Pin
Member 446930417-Aug-09 9:00
Member 446930417-Aug-09 9:00 
AnswerRe: Event validation errors Pin
Kishore.ssit7-Dec-09 21:31
Kishore.ssit7-Dec-09 21:31 
AnswerRe: Event validation errors Pin
Sean_ST2-Sep-10 11:55
Sean_ST2-Sep-10 11:55 
GeneralRe: Event validation errors Pin
FranklinL20-Oct-10 17:18
FranklinL20-Oct-10 17:18 
GeneralRe: Event validation errors Pin
teroni8-Jun-17 5:03
teroni8-Jun-17 5:03 
GeneralVB Version Pin
ianbenoliel17-Feb-09 3:14
ianbenoliel17-Feb-09 3:14 
QuestionUse of your code in VS2008 Pin
Max Pace11-Feb-09 2:56
Max Pace11-Feb-09 2:56 
AnswerRe: Use of your code in VS2008 Pin
lotuspro11-Feb-09 3:20
lotuspro11-Feb-09 3:20 
AnswerRe: Use of your code in VS2008 Pin
Max Pace11-Feb-09 4:29
Max Pace11-Feb-09 4:29 
Generaloptgroup style change Pin
Jay K R8-Oct-08 18:51
Jay K R8-Oct-08 18:51 
AnswerRe: optgroup style change Pin
CaptainRantflaps12-Nov-08 23:24
CaptainRantflaps12-Nov-08 23:24 
Questioncombination of ungroup item [modified] Pin
paidinjav16-Sep-08 23:07
paidinjav16-Sep-08 23:07 
AnswerRe: combination of ungroup item Pin
waaromikniet15-Dec-08 2:11
waaromikniet15-Dec-08 2:11 
GeneralRe: combination of ungroup item Pin
Sameers Javed29-Mar-10 1:08
Sameers Javed29-Mar-10 1:08 
Generaloptgroup structure disappears after PostBack Pin
Member 37370022-Sep-08 3:30
Member 37370022-Sep-08 3:30 
GeneralRe: optgroup structure disappears after PostBack Pin
Lamester17-Jun-09 13:51
Lamester17-Jun-09 13:51 
GeneralRe: optgroup structure disappears after PostBack Pin
Vipul12345626-Apr-10 19:57
Vipul12345626-Apr-10 19:57 

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.