0

在 Ext.grid.EditorGridPanel 表中,如何将一个单元格拆分为两行或三行?

就像下图一样

在此处输入图像描述

4

1 回答 1

2

我设法做了一种行跨度而不是行拆分。IMO 它更容易,并且看起来与附加图像上的网格相同。示例代码:

var grid = new Ext.grid.EditorGridPanel({
    [...],

    // hook up events
    initComponent: function () {
        Ext.grid.GridPanel.prototype.initComponent.call(this);

        this.getView().on('refresh', this.updateRowSpan, this);
        this.getView().on('rowupdated', this.updateRowSpan, this);
    },

    onLayout : function(vw, vh) {
        this.updateRowSpan();
    },

    // set span on rows
    updateRowSpan: function() {
        var columns = this.getColumnModel().config,
            view = this.getView(),
            store = this.getStore(),
            rowCount = store.getCount(),

            column = columns[0], // put propert column index here
            dataIndex = column.dataIndex,

            spanCell = null,
            spanCount = null;
            spanValue = null;

        for (var row = 0; row < rowCount; ++row) {
            var cell = view.getCell(row, 0),
                record = store.getAt(row),
                value = record.get(dataIndex);

            if (spanValue != value) {
                if (spanCell !== null) {
                    this.setSpan(Ext.get(spanCell), spanCount);
                }

                spanCell = cell;
                spanCount = 1;
                spanValue = value;
            } else {
                spanCount++;
            }
        }

        if (spanCell !== null) {
            this.setSpan(Ext.get(spanCell), spanCount);
        }
    },

    // set actual span on row
    setSpan: function(cell, count) {
        var view = this.getView(),
            innerCell = Ext.get(cell.down('*')),
            height = cell.getHeight(),
            width = cell.getWidth();

        cell.setStyle('position', 'relative');
        if (count == 1) {
            innerCell.setStyle('position', '');
            innerCell.setStyle('height', '');
            innerCell.setStyle('height', '');
        } else {
            innerCell.setStyle('position', 'absolute');
            innerCell.setStyle('height', (height * count - cell.getPadding('tb') - innerCell.getPadding('tb')) + 'px');
            innerCell.setStyle('width', (width - cell.getPadding('lr') - innerCell.getPadding('lr')) + 'px');
        }
    }
});

.x-grid3-cell-inner此代码通过应用position: absolute和足够大的大小来覆盖下面的行来更改样式。请注意,您还必须应用一些不透明的背景才能使其工作。工作示例:http: //jsfiddle.net/RpxZ5/8/

我首先为 Ext JS 4 编写代码,如果您有兴趣,这里是工作示例:http: //jsfiddle.net/wQSQM/3/

于 2013-10-17T16:06:20.007 回答