Hi,
How would I get a drop downlist to populate with check boxes. I am porting a c# project to flex, and I would like to imitate the functionality of their checkbox drop list.
Anyone got any idea how I would go about this.
Please and thank you.
Hi,
How would I get a drop downlist to populate with check boxes. I am porting a c# project to flex, and I would like to imitate the functionality of their checkbox drop list.
Anyone got any idea how I would go about this.
Please and thank you.
you could extend the popup-button and add custom item renderer for the items in the dropdown.
http://www.adobe.com/livedocs/flex/2/langref/mx/controls/PopUpButton.html
Typically you do this by creating a custom ItemRenderer and assigning it to your DropDownList. Here's an example of creating/applying a custom ItemRenderer in a DropDownList:
Hope that helps.