Archive

Posts Tagged ‘DropDownList’

Spark DropDownList equivalent of the HTML optgroup tag

January 31st, 2010 4 comments

HTML’s select control included a tag called optgroup where you could group items in the drop down together and provide a heading that wasn’t selectable. This post looks at making an equivalent component in Flex 4 by extending DropDownList.
Read more…

Caching images loaded from a spark item renderer

January 10th, 2010 9 comments

I recently created a form in Flex that required using multiple DropDownLists with a custom item renderer that loads in preview images of each item. This was really easy to do initially, but I noticed a couple performance issues that bothered me. I decided to improve the performance by implementing a simple caching strategy.
Read more…