Nest column group for multiple column groups : GroupingField « Grid « Flex






Nest column group for multiple column groups

Nest column group for multiple column groups
 
<?xml version="1.0"?>
<!--
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/

-->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        
        import mx.collections.ArrayCollection;
        [Bindable]
        private var dpFlat:ArrayCollection = new ArrayCollection([
            {Column1:"Southwest", Territory:"Arizona",Column2:"Barbara Jennings", Value1:38865, Value2:40000},
            {Column1:"Southwest", Territory:"Arizona",Column2:"Dana Binn", Value1:29885, Value2:30000},
            {Column1:"Southwest", Territory:"Central California",Column2:"Joe Smith", Value1:29134, Value2:30000},
            {Column1:"Southwest", Territory:"Nevada",Column2:"Bethany Pittman", Value1:52888, Value2:45000},
            {Column1:"Southwest", Territory:"Northern California",Column2:"Lauren Ipsum", Value1:38805, Value2:40000},
            {Column1:"Southwest", Territory:"Northern California",Column2:"T.R. Smith", Value1:55498, Value2:40000},
            {Column1:"Southwest", Territory:"Southern California",Column2:"Alice Treu", Value1:44985, Value2:45000},
            {Column1:"Southwest", Territory:"Southern California",Column2:"Jane Grove", Value1:44913, Value2:45000}
        ]); 
      
    </mx:Script>
    <mx:AdvancedDataGrid id="myADG" dataProvider="{dpFlat}"
        width="100%" height="100%">
        <mx:groupedColumns>
            <mx:AdvancedDataGridColumn dataField="Column2"
                headerText="Territory Rep" />
            <mx:AdvancedDataGridColumnGroup
                headerText="All Groups">
                <mx:AdvancedDataGridColumnGroup
                    headerText="Area">
                    <mx:AdvancedDataGridColumn dataField="Column1" />
                    <mx:AdvancedDataGridColumn dataField="Territory" />
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup
                    headerText="Revenues">
                    <mx:AdvancedDataGridColumn dataField="Value1" />
                    <mx:AdvancedDataGridColumn dataField="Value2" />
                </mx:AdvancedDataGridColumnGroup>
            </mx:AdvancedDataGridColumnGroup>
        </mx:groupedColumns>
    </mx:AdvancedDataGrid>
</mx:Application>

   
  








Related examples in the same category

1.Using the default properties of the GroupingField and SummaryRow classesUsing the default properties of the GroupingField and SummaryRow classes
2.Using grouped columns with hierarchical dataUsing grouped columns with hierarchical data
3.Using grouped columns with hierarchical data column groups with hierarchical dataUsing grouped columns with hierarchical data column groups with hierarchical data
4.Summary Group AdvancedDataGridSummary Group AdvancedDataGrid