extjs 表头合并

var columns = [new Ext.grid.RowNumberer(), this.checkModel, {
                    header : '月份',
                    width : 80,
                    dataIndex : 'year_month',
                    css : 'background:#EEEEEE;'
                }, {
                    header : '人员',
                    width : 70,
                    dataIndex : 'user_name',
                    css : 'background:#EEEEEE;'
                }, {
                    header : '项目总数',
                    width : 60,
                    dataIndex : 'project_num',
                    align : 'right',
                    css : 'background:#FFF9F5;'
                }, {
                    header : '匹配成功项目数',
                    width : 100,
                    dataIndex : 'p_matchok_num',
                    css : 'background:#FFF9F5;',
                    align : 'right'
                }, {
                    header : '项目匹配成功率(%)',
                    width : 120,
                    dataIndex : 'p_matchok_rate',
                    align : 'right',
                    css : 'background:#FFF9F5;'
                }, {
                    header : '可量产项目数',
                    width : 110,
                    dataIndex : 'p_productok_num',
                    align : 'right',
                    css : 'background:#FFF9F5;'
                }, {
                    header : '项目可量产率(%)',
                    width : 125,
                    dataIndex : 'p_productok_rate',
                    align : 'right',
                    css : 'background:#FFF9F5;'
                }, {
                    header :'压缩机送样机型数',
                    width : 120,
                    dataIndex : 'sample_num',
                    align : 'right',
                    css : 'background: #FFFFDD;'
                }, {
                    header :'已匹配机型数',
                    width : 90,
                    dataIndex : 's_match_num',
                    align : 'right',
                    css : 'background: #FFFFDD;'
                }, {
                    header :'样机已匹配率(%)',
                    width : 100,
                    dataIndex : 's_match_rate',
                    align : 'right',
                    css : 'background: #FFFFDD;'
                }, {
                    header : '匹配成功机型数',
                    width : 95,
                    dataIndex : 's_matchok_num',
                    align : 'right',
                    css : 'background: #FFFFDD;'
                }, {
                    header : '样机匹配成功率(%)',
                    width : 110,
                    dataIndex : 's_matchok_rate',
                    align : 'right',
                    css : 'background: #FFFFDD;'
                }];
        this.createSearchStore(columns);
        this.headColumn=new Ext.grid.ColumnModel({
            columns:columns,
            rows:[[{colspan:4,header:'  ',align:'center'},
                {colspan:5,header:'空调项目',align:'center'},
                {colspan:5,header:'压缩机样机',align:'center'}]]
        });
        this.sm = new Ext.grid.RowSelectionModel();
        this.searchGridPanel = new Ext.grid.GridPanel(this.applyCfg(
                this.searchGridPanelCfg, {
                    store : this.searchStore,
                    enableHdMenu : false,
                    loadMask : {
                        msg : '正在加载数据 ,请稍候...'
                    },
                    cm :this.headColumn,
                    sm : this.sm,
                    tabTip : '样机跟踪滚动统计汇总表',
                    viewConfig : {
                        onLoad : Ext.emptyFn,
                        listeners : {
                            beforerefresh : function(v) {
                                v.scrollTop = v.scroller.dom.scrollTop;
                                v.scrollHeight = v.scroller.dom.scrollHeight;
                            },
                            refresh : function(v) {
                                v.scroller.dom.scrollTop = v.scrollTop
                                        + (v.scrollTop == 0
                                                ? 0
                                                : v.scroller.dom.scrollHeight
                                                        - v.scrollHeight);
                            }
                        }
                    },
                    bodyStyle : 'width:100%',
                    height : 300,
                    plugins:[new Ext.ux.plugins.GroupHeaderGrid()],
                    autoWidth : true,
                    stripeRows : true,
                    iconCls : 'icon-grid',
                    region : 'center',
                    closable : true,
                    tbar : this.toolBar,
                    bbar : new Ext.PagingToolbar({
                                store : this.searchStore,
                                pageSize : this.pageSize,
                                displayInfo : true
                            })
                }));

你可能感兴趣的:(extjs,header,css,function,plugins,user)