tags:

views:

342

answers:

1

I need the Flex tree control by default open... where all nodes are visible.

theTree.openItems = xmlListColl..node;

This is not working.

<?xml version="1.0"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
<root>
<module>
<node>
<node>
</module>
</root>
A: 
MyTree.expandChildrenOf(myTreeDataProvider, true);
TheBrain