Creating a separate column for the navigation tree : Tree « Components « Flex






Creating a separate column for the navigation tree

Creating a separate column for the navigation tree
      

<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->


    <!-- dpcontrols/adg/SimpleHierarchicalADGTreeColumn.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark">
    <fx:Script> 
         
        import mx.collections.ArrayCollection; 
        
        [Bindable] 
        private var dpHierarchy:ArrayCollection = new ArrayCollection([ 
        {Region:"Southwest", children: [ 
            {Region:"Arizona", children: [ 
                {Territory_Rep:"Barbara Jennings", Actual:38865, Estimate:40000}, 
                {Territory_Rep:"Dana Binn", Actual:29885, Estimate:30000}]}, 
                {Region:"Central California", children: [ 
                    {Territory_Rep:"Joe Smith", Actual:29134, Estimate:30000}]}, 
                    {Region:"Nevada", children: [ 
                        {Territory_Rep:"Bethany Pittman", Actual:52888, Estimate:45000}]}, 
                        {Region:"Northern California", children: [ 
                            {Territory_Rep:"Lauren Ipsum", Actual:38805, Estimate:40000}, 
                            {Territory_Rep:"T.R. Smith", Actual:55498, Estimate:40000}]}, 
                            {Region:"Southern California", children: [ 
                                {Territory_Rep:"Alice Treu", Actual:44985, Estimate:45000}, 
                                {Territory_Rep:"Jane Grove", Actual:44913, Estimate:45000}]} 
            ]} 
        ]); 
      
    </fx:Script>
    <mx:AdvancedDataGrid width="100%" height="100%"
        folderClosedIcon="{null}" folderOpenIcon="{null}" defaultLeafIcon="{null}">
        <mx:dataProvider>
            <mx:HierarchicalData source="{dpHierarchy}" />
        </mx:dataProvider>
        <mx:columns>
            <mx:AdvancedDataGridColumn headerText=""
                width="50" />
            <mx:AdvancedDataGridColumn dataField="Region" />
            <mx:AdvancedDataGridColumn dataField="Territory_Rep"
                headerText="Territory Rep" />
            <mx:AdvancedDataGridColumn dataField="Actual" />
            <mx:AdvancedDataGridColumn dataField="Estimate" />
        </mx:columns>
    </mx:AdvancedDataGrid>
</s:Application>

   
    
    
    
    
    
  








Related examples in the same category

1.Using showRoot property to start the display from the second levelUsing showRoot property to start the display from the second level
2.Get selected item from TreeGet selected item from Tree
3.Add selected value from Tree and add it to ListAdd selected value from Tree and add it to List
4.Get selected label for Tree itemGet selected label for Tree item
5.Open nodes in the Tree control based on the values of query string parametersOpen nodes in the Tree control based on the values of query string parameters
6.Add icon fields to TreeAdd icon fields to Tree
7.Using the setItemIcon() method for Tree controlUsing the setItemIcon() method for Tree control
8.depth color for Tree styledepth color for Tree style
9.alternatingItemColors for Tree stylealternatingItemColors for Tree style
10.Set depthColors for Tree control through xml attributeSet depthColors for Tree control through xml attribute
11.set alternatingItemColors for Tree control through xml attributeset alternatingItemColors for Tree control through xml attribute
12.Use Label for Tree labelFieldUse Label for Tree labelField
13.Drag and drop on a TreeDrag and drop on a Tree
14.Search a TreeSearch a Tree
15.Expand tree nodeExpand tree node
16.Drill Into TreeDrill Into Tree
17.Specify an icon displayed with each Tree leaf when you populate it by using XMLSpecify an icon displayed with each Tree leaf when you populate it by using XML
18.Tree Item IconTree Item Icon
19.Tree Open NodeTree Open Node
20.Use style to set tree node open durationUse style to set tree node open duration
21.Define Arrays of colors for properties of the Tree type selectorDefine Arrays of colors for properties of the Tree type selector
22.Use groupIconFunction to display a custom icon for navigation tree top level nodeUse groupIconFunction to display a custom icon for navigation tree top level node