Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks
|
I've used the standard control in the past, and just added a simple ControlAdapter for it that would override the default behavior so it could render <optgroup>s in certain places. This works great even if you have controls that don't need the special behavior, because the additional feature doesn't get in the way. Note that this was for a specific purpose and written in .Net 2.0, so it may not suit you as well, but it should at least give you a starting point. Also, you have to hook it up using a .browserfile in your project (see the end of the post for an example).
Here's a C# implementation of the same Class:
My browser file was named "App_Browsers\BrowserFile.browser" and looked like this:
|
|||||||||||||||
|
|
Thanks Joel! everyone... here's C# version if you want it:
|
|||
|
|
The above code renders the end tag for the optgroup before any of the options, so the options don't get indented like they should in addition to the markup not properly representing the grouping. Here's my slightly modified version of Tom's code:
Use it like this:
and here's the generated markup (indented for ease of viewing):
|
|||||
|
|
I have used JQuery to achieve this task. I first added an new attribute for every ListItem from the backend and then used that attribute in JQuery wrapAll() method to create groups Backend Code
JQuery Part:
|
|||
|
|
|
The Sharp Pieces project on CodePlex solves this (and several other) control limitations. |
|||
|
|
|
I use the reflector to see why is not supported. There is why. In the render method of the ListControl no condition is there to create the optgroup.
So i create my own dropdown Control with an override of the method RenderContents. There is my control. Is working fine. I use exactly the same code of Microsoft, just add a little condition to support listItem having attribute optgroup to create an optgroup and not a option. Give me some feed back
|
|||||
|
|
Based on the posts above I've created a c# version of this control with working view state.
I hope this helps some people :-) |
|||
|
|
|
As the answers above that overload the RenderContents method do work. You also have to remember to alter the viewstate. I have come into an issue when using the non-altered viewstate in UpdatePanels. This has parts taken from the Sharp Pieces Project.
|
|||
|
|
Tested on Chrome 16, Firefox 9 and IE8. |
||||
|
|
protected by Will♦ Oct 26 '10 at 13:38
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.