Is there a way to create a list of checkboxes as elements for a drop down list? I'm not sure how to accomplish this (or if it's even possible), as well as set the checkbox as checked if the value is true in the database.
Thanks.
here are a couple of jquery based solutions you might find useful:
http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/
If you're looking for a commercial product. DevExpress has just such a control
Whenever you see something that looks like a Drop Down List, but doesn't behave like one, it's a clever css solution.
Basically it's a hidden div:
<img src="image_that_looks_like_a_drop_down_list.jpg" onclick="showDiv('fakeDDL');" />
<div id="fakeDDL" style="display:none;">
//lots of checkboxes
</div>