5

我们有一个 ExtJS 网格面板,它已经包含了太多的列 (imo),所以我正在考虑将一些数据包含到主行的“子行”中。像:

数据1 | 数据2 | 数据3 | 数据4 | Data5
  跨越
Data1 |的一些附加数据 数据2 | 数据3 | 数据4 | Data5
  一些额外的数据

我知道该expander插件,但我们不需要展开/折叠功能,并且总是需要打开子行。

有什么想法或想法吗?

提前致谢。

4

2 回答 2

17

如果你使用 ExtJS-4,

// ...
var rowBodyFeature = Ext.create('Ext.grid.feature.RowBody', {
    getAdditionalData: function(data, rowIndex, record, orig) {
        var headerCt = this.view.headerCt,
        colspan  = headerCt.getColumnCount();
        return {
            rowBody: "HELLO WORLD!", // do something with record
            rowBodyCls: this.rowBodyCls,
            rowBodyColspan: colspan
        };
    }
});

Ext.create('Ext.grid.Panel', {
    // ...
    features: [rowBodyFeature]
    // ...
});

如果使用 ExtJS-3,请尝试:

new Ext.grid.GridPanel({
    //...
    viewConfig: {
        enableRowBody: true,
        getRowClass: function(record, rowIndex, p, store) {
            p.body = 'HELLOW WORLD: ' + record.get('attribute');
            return 'x-grid3-row-expanded';
        }
    }
于 2011-06-06T05:57:27.397 回答
0

您需要做的是使用扩展插件实现嵌套网格。在单击或展开事件中,您可以使用行 ID 作为键来加载子行。

于 2011-05-23T23:30:55.553 回答