Deleting items in a List from an item renderer

September 23rd, 2009 8 comments

It’s easy to delete an item in a spark List from within an item renderer. This is handy if you have a List with a custom renderer that provides a button to delete the item that is associated with that renderer.
Read more…

Expanding item renderers in a DataGroup or List

July 18th, 2009 3 comments

The spark DataGroup component is designed to take data items and pass them through an item renderer to create a visual representation of that data. In Flex 4 it is very easy to build custom item renderers.

This sample application demonstrates how you can create an item renderer that only shows some information by default and allows the user to drill down to see more information by clicking on an item or it’s associated “twisty” icon.

Read more…

Performance implications of the List itemRenderer vs. itemRendererFunction properties

July 10th, 2009 4 comments

The spark List component in Flex 4 has virtualization enabled by default. Virtualization is an optimization that only renders items that are currently in view which allows the List to support very large data sets. You can learn more about how virtualization works in Flex 4 by reading the Spark Virtualization Spec.
Read more…

Zoom in on items in a List with a TileLayout

This sample demonstrates one way of modifying the postLayoutTransformOffsets property of an ItemRenderer in a List in order to have the items appear to zoom in when hovered or selected.
Read more…

Creating a navigation bar using RadioButtons in Flex 4

June 19th, 2009 2 comments

I built a small sample application that demonstrates one way of building a navigation bar in Flex 4 that makes it really easy to toggle between different views in an application. This approach uses spark RadioButtons with a very simple custom skin.
Read more…

Introduction to the DataGroup Component in Flex 4

June 17th, 2009 1 comment

DataGroup is a new component introduced in Flex 4 that is responsible for turning data items like Strings and Objects into visual elements. The process of turning boring old data items into a visual representation is called item rendering. DataGroup is the lightest weight component that deals with item rendering. It has no skin and no concept of selection. A SkinnableDataContainer is exactly the same as a DataGroup except it has a skin and a List provides selection functionality.
Read more…