/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.onReady(function() { var structure = { Asia: ['Beijing', 'Tokyo'], Europe: ['Berlin', 'London', 'Paris'] }, products = ['ProductX', 'ProductY'], fields = [], columns = [], data = [], continentGroupRow = [], cityGroupRow = []; /* * Example method that generates: * 1) The column configuration for the grid * 2) The column grouping configuration * 3) The data for the store * 4) The fields for the store */ function generateConfig(){ var arr, numProducts = products.length; Ext.iterate(structure, function(continent, cities){ continentGroupRow.push({ header: continent, align: 'center', colspan: cities.length * numProducts }); Ext.each(cities, function(city){ cityGroupRow.push({ header: city, colspan: numProducts, align: 'center' }); Ext.each(products, function(product){ fields.push({ type: 'int', name: city + product }); columns.push({ dataIndex: city + product, header: product, renderer: Ext.util.Format.usMoney }); }); arr = []; for(var i = 0; i < 20; ++i){ arr.push((Math.floor(Math.random()*11) + 1) * 100000); } data.push(arr); }); }) } // Run method to generate columns, fields, row grouping generateConfig(); /* * continentGroupRow at this point is: * [ * {header: 'Asia', colspan: 4, align: 'center'}, * {header: 'Europe', colspan: 6, align: 'center'} * ] * * cityGroupRow at this point is: * [ * {header: 'Beijing', colspan: 2, align: 'center'}, * {header: 'Tokyo', colspan: 2, align: 'center'}, * {header: 'Berlin', colspan: 2, align: 'center'}, * {header: 'London', colspan: 2, align: 'center'}, * {header: 'Paris', colspan: 2, align: 'center'} * ] */ var group = new Ext.ux.grid.ColumnHeaderGroup({ rows: [continentGroupRow, cityGroupRow] }); /* * fields at this point is: * [ * {type: 'int', name: 'BeijingProductX'}, * {type: 'int', name: 'BeijingProductY'}, * {type: 'int', name: 'TokyoProductX'}, * {type: 'int', name: 'TokyoProductY'}, * {type: 'int', name: 'BerlinProductX'}, * {type: 'int', name: 'BerlinProductY'}, * {type: 'int', name: 'LondonProductX'}, * {type: 'int', name: 'LondonProductY'}, * {type: 'int', name: 'ParisProductX'}, * {type: 'int', name: 'ParisProductY'} * ] * * columns at this point is: * [ * {dataIndex: 'BeijingProductX', header: 'ProductX'}, * {dataIndex: 'BeijingProductY', header: 'ProductY'}, * {dataIndex: 'TokyoProductX', header: 'ProductX'}, * {dataIndex: 'TokyoProductY', header: 'ProductY'}, * {dataIndex: 'BerlinProductX', header: 'ProductX'}, * {dataIndex: 'BerlinProductY', header: 'ProductY'}, * {dataIndex: 'LondonProductX', header: 'ProductX'}, * {dataIndex: 'LondonProductY', header: 'ProductY'}, * {dataIndex: 'ParisProductX', header: 'ProductX'}, * {dataIndex: 'ParisProductY', header: 'ProductY'} * ] */ var grid = new Ext.grid.GridPanel({ renderTo: 'column-group-grid', title: 'Sales By Location', width: 1000, height: 400, store: new Ext.data.ArrayStore({ fields: fields, data: data }), columns: columns, viewConfig: { forceFit: true }, plugins: group }); });