alternatingItemColors for Tree style : Tree « Components « Flex






alternatingItemColors for Tree style

alternatingItemColors for Tree style
      

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Style>
        @namespace mx "http://www.adobe.com/2006/mxml";
        mx|Tree { 
            depthColors: #FFCC33, #FFCC99, #CC9900;
            alternatingItemColors: red, green; 
        }
    </mx:Style>
    <mx:XMLList id="treeData">
        <node label="File">
            <node label="Save">
                <node label="Doc" />
                <node label="Pdf" />
                <node label="Rdf" />
            </node>
            <node label="Edit">
                <node label="Cut" />
                <node label="Copy" />
                <node label="Paste" />                
            </node>
            <node label="Window" />
            <node label="Help" />
        </node>
    </mx:XMLList>
    <mx:Panel title="Tree Control Example" width="100%">
        <mx:Tree id="myTree" width="100%" labelField="@label" dataProvider="{treeData}" />
    </mx:Panel>
</mx: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.Set depthColors for Tree control through xml attributeSet depthColors for Tree control through xml attribute
10.set alternatingItemColors for Tree control through xml attributeset alternatingItemColors for Tree control through xml attribute
11.Use Label for Tree labelFieldUse Label for Tree labelField
12.Drag and drop on a TreeDrag and drop on a Tree
13.Search a TreeSearch a Tree
14.Expand tree nodeExpand tree node
15.Drill Into TreeDrill Into Tree
16.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
17.Tree Item IconTree Item Icon
18.Tree Open NodeTree Open Node
19.Use style to set tree node open durationUse style to set tree node open duration
20.Define Arrays of colors for properties of the Tree type selectorDefine Arrays of colors for properties of the Tree type selector
21.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
22.Creating a separate column for the navigation treeCreating a separate column for the navigation tree