Paket | mx.collections |
Klass | public class HierarchicalData |
Arv | HierarchicalData EventDispatcher Object |
Implementerar | IHierarchicalData |
Underklasser | GroupingCollection, GroupingCollection2 |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
dataProvider
property an instance of the HierarchicalData class.
This implementation handles E4X, XML, and Object nodes in similar but different
ways. See each method description for details on how the method
accesses values in nodes of various types.
Relaterade API-element
Egenskap | Definieras med | ||
---|---|---|---|
childrenField : String
Indicates the field name to be used to detect children objects in
a data item. | HierarchicalData | ||
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
source : Object
The source collection. | HierarchicalData |
Metod | Definieras med | ||
---|---|---|---|
HierarchicalData(value:Object = null)
Constructor. | HierarchicalData | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registrerar ett händelseavlyssnarobjekt för ett EventDispatcher-objekt så att avlyssnaren får meddelanden om händelser. | EventDispatcher | ||
Returns true if the node can contain children. | HierarchicalData | ||
Skickar en händelse till händelseflödet. | EventDispatcher | ||
Returns an Object representing the node's children. | HierarchicalData | ||
Returns data from a node. | HierarchicalData | ||
Returns the root data item. | HierarchicalData | ||
Returns true if the node has children. | HierarchicalData | ||
Kontrollerar om EventDispatcher-objektet har några avlyssnare registrerade för en viss typ av händelse. | EventDispatcher | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Tar bort en avlyssnare från EventDispatcher-objektet. | EventDispatcher | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object | ||
Kontrollerar om en händelseavlyssnare är registrerad för det här EventDispatcher-objektet eller något av dess överordnade objekt för den angivna händelsetypen. | EventDispatcher |
childrenField | egenskap |
childrenField:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Indicates the field name to be used to detect children objects in
a data item.
By default, all subnodes are considered as children for
XML data, and the children
property is used for the Object data type.
This is helpful in adapting to a data format that uses custom data fields
to represent children.
Implementering
public function get childrenField():String
public function set childrenField(value:String):void
source | egenskap |
source:Object
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
The source collection. The collection should implement the IList interface to facilitate operation like the addition and removal of items.
Implementering
public function get source():Object
public function set source(value:Object):void
Relaterade API-element
HierarchicalData | () | Konstruktor |
canHaveChildren | () | metod |
public function canHaveChildren(node:Object):Boolean
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns true
if the node can contain children.
Nodes do not have to contain children for the method
to return true
.
This method is useful in determining whether other
nodes can be appended as children to the specified node.
Parametrar
node:Object — The Object that defines the node.
|
Boolean — true if the node can contain children.
|
getChildren | () | metod |
public function getChildren(node:Object):Object
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns an Object representing the node's children.
Parametrar
node:Object — The Object that defines the node.
If null , return a collection of top-level nodes.
|
Object — An Object containing the children nodes.
|
getData | () | metod |
getRoot | () | metod |
hasChildren | () | metod |
Tue Jun 12 2018, 01:40 PM Z