网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

ExtJS2.2.1实现双表头动态列

  1. 默认所有列(假设列3最大3列,动态显示),使用headerRowsEx中的rowspan实现双表头,第一层表头的width也必须要设置正确。
  2. 使用"grid.getColumnModel().setHidden"即可实现列的隐藏,也不需要动态设置colspan。
{
    xtype : 'filtergrid',
    id : 'grid1',
    cm : new Ext.grid.ColumnModel({
        columns : [{
            header: '列1',
            id: 'col1',
            dataIndex: 'col1',
            width : 100
        }, {
            header: '列2',
            id: 'col2',
            dataIndex: 'col2',
            width : 100
        }, {
            header: '列3-1',
            id: 'col31',
            dataIndex: 'col31',
            width : 100
        }, {
            header: '列3-2',
            id: 'col32',
            dataIndex: 'col22',
            width : 100
        }, {
            header: '列3-3',
            id: 'col33',
            dataIndex: 'col33',
            width : 100
        }],
        headerRowsEx : [[{
            dataIndex : 'col1',
            rowspan : 2
        }, {
            dataIndex : 'col2',
            rowspan : 2 
        }, {
            id : 'col3Header',
            header : '列3',
            colspan : 3,
            width : 300
        }], [{
            header : '列1'
        }, {
            header : '列2'
        }, {
            dataIndex : 'col31',
            columnIdRef : ['col3Header']
        }, {
            dataIndex : 'col32',
            columnIdRef : ['col3Header']
        }, {
            dataIndex : 'col33',
            columnIdRef : ['col3Header']
        }]]
    }),
    filters : new Ext.ux.GridFilters({
        filters : [{
            ......
        }, {
            ......
        }]
    }),
    store : ...,
    listeners : ...
},

initialize : function(param) {
    var grid = Ext.getCmp('grid1');
    var cm = grid.getColumnModel();
    cm.setHidden(cm.findColumnIndex('col33'), true);

    //  查找列的Index
    //cm.findColumnIndex('col33');
    // 单元格背景色设置
    // grid.getView().getCell(i, j).style.backgroundColor = "gray";
}

新闻标题:ExtJS2.2.1实现双表头动态列
网站路径:http://bjjierui.cn/article/ppspjo.html

其他资讯