From the category archives:

Tree

The following example shows how you can remove or modify the border on the Halo Tree control (with default Spark skin) in Flex 4 by setting the borderSkin style.

Full code after the jump.

[click to continue…]

{ 0 comments }

The following example shows how you can expand/collapse branches in a Flex Tree control by clicking on the row instead of having to click on the disclosure/arrow icon.

Full code after the jump.

[click to continue…]

{ 0 comments }

The following example shows how you can create a simple image gallery in Flex using a Tree control and a SWFLoader control.

Full code after the jump.

[click to continue…]

{ 27 comments }

The following example shows how you can use a Tree control as a PopUpButton control’s pop up in Flex.

Full code after the jump.

[click to continue…]

{ 9 comments }

In a previous example, “Removing folder icons from the Flex Tree control”, we saw how to remove the folder icons from a Tree control in Flex so only the disclosure (arrow) icons were visible. In the following example we look at a similar technique for removing the default leaf icons from the Tree control in Flex.

The short answer, set the defaultLeafIcon style to null using CSS, as shown in the following snippet:

<mx:Style>
    Tree {
        defaultLeafIcon: ClassReference(null);
    }
</mx:Style>

The long answer? Keep reading!

Full code after the jump.

[click to continue…]

{ 8 comments }

The following example shows how you can remove the folder icons from the Tree control in Flex so that only the disclosure (arrow) icons and leaf icons are visible.

The short answer, set the folderClosedIcon and folderOpenIcon styles to null using CSS, as shown in the following snippet:

<mx:Style>
    Tree {
        folderClosedIcon: ClassReference(null);
        folderOpenIcon: ClassReference(null);
    }
</mx:Style>

The long answer?
Full code after the jump.

[click to continue…]

{ 7 comments }

In a previous example, “Preventing branches from being selected in a Flex Tree control”, we saw how we could prevent users from selecting branches (folders) in a Tree container in Flex by using the itemClick event and the Tree class’s dataDescriptor.isBranch() method.

The following example shows you how you can prevent any item from being selected by adding an attribute (named “clickable”, but you could name it anything you wanted) and using E4X expressions to determine if the currently clicked item should be selectable or not.

Full code after the jump.

[click to continue…]

{ 8 comments }

The following example shows you how you can prevent users from selecting the branch (folder) items in a Tree control in Flex by listening for the itemClick event and using the Tree class’s dataDescriptor.isBranch() method to determine whether the currently selected item is a branch, and if so, deselect the item.

Full code after the jump.

[click to continue…]

{ 0 comments }

Expanding nodes in a Flex Tree control using the openItems property

by Peter deHaan January 15, 2008

The following example shows how you can open nodes in a Tree control in Flex by setting the openItems property to an XMLList or Array object.
Full code after the jump.

Read the full article →

Toggling item roll over highlighting in the Flex Tree control

by Peter deHaan January 11, 2008

The following example shows how you can toggle item roll over highlighting in the Tree control in Flex by setting the useRollOver style.
Full code after the jump.

Read the full article →

Displaying the number of children in each branch of a Flex Tree control

by Peter deHaan January 11, 2008

The following example shows how you can display the number of children in each branch of a Tree control in Flex by using the dataDescriptor property, labelFunction property, hasChildren() method and getChildren() method.
Full code after the jump.

Read the full article →

Using an Array as a data provider in a Flex Tree control

by Peter deHaan December 3, 2007

The following code shows you how you can use an Array as a data provider for a Tree control in Flex.
Full code after the jump.

Read the full article →