Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks
|
2
|
|
|
|
|
|
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. Here is the class I used (VB.Net). 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 give you a starting point at least. Also, you have to hook it up using a .browserfile in your project.
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 Sharp Pieces project on CodePlex solves this (and several other) control limitations. |
||
|
|
|
|
Hello guys, 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
|
||
|
|
|
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.
|
||
|
|
