The IHierarchicalCollectionView interface defines an interface
for hierarchical or grouped data.
Typically, you use this data with the AdvancedDataGrid control.
[read-only]
A flag that, if true, indicates that the current data provider has a root node;
for example, a single top-level node in a hierarchical structure.
Removes the child node from a node at the specified index.
IHierarchicalCollectionView
Property Detail
hasRoot
property
hasRoot:Boolean [read-only]
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
A flag that, if true, indicates that the current data provider has a root node;
for example, a single top-level node in a hierarchical structure.
XML and Object are examples of data types that have a root node,
while Lists and Arrays do not.
Implementation public function get hasRoot():Boolean
openNodes
property
openNodes:Object
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
An Array of Objects containing the data provider element
for all the open branch nodes of the data.
Implementation public function get openNodes():Object public function set openNodes(value:Object):void
showRoot
property
showRoot:Boolean
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
A Boolean flag that specifies whether to display the data provider's root node.
If the source data has a root node, and this property is set to
false, the collection will not include the root item.
Only the descendants of the root item will be included in the collection.
This property has no effect on a source with no root node,
such as List and Array objects.
The default value is true.
Implementation public function get showRoot():Boolean public function set showRoot(value:Boolean):void