views:

137

answers:

2

I'd like to have a DropDownList that has a CheckBox next to each item that would allow multiple to be selected. I did a little poking around but haven't found anything that will do this, does anyone know if this can be easily achieved?

I know it can be done with a listBox, but would prefer the dropdown format to save space.

A: 

I've never seen a multi-select DropDownList on any platform. How do you want it to work?

I'm sure some clever javascript could create one.

egrunin
A: 

Have a look at the DropDown control from the ASP.NET AJAX toolkit: It allows you to put arbitrary controls into a dropdown-like interface. I didn't try it, but I think that it should work to put a CheckBoxList in there.

Heinzi
I'll take a look, thanks!
Abe Miessler