ExtJS 网格面板 - 多“行”每行?

发布于 2024-11-09 10:19:36 字数 278 浏览 0 评论 0原文

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

数据1 |数据2 |数据3 |数据4 |数据5
  一些额外的数据跨越
数据1 |数据2 |数据3 |数据4 |数据5
  一些额外的数据跨越

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

有什么想法或想法吗?

提前致谢。

We have an ExtJS Grid Panel that has grown to include too many columns (imo), so I am looking into enfolding some data into "sub-rows" of the main row. Like:

Data1 | Data2 | Data3 | Data4 | Data5
  Some additional data that spans
Data1 | Data2 | Data3 | Data4 | Data5
  Some additional data that spans

I am aware of the expander plugin, but we wouldn't need the expand/collapse functionality and always need the sub-rows open.

Any thoughts or ideas?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

善良天后 2024-11-16 10:19:37

如果您使用 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';
        }
    }

If you're using 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]
    // ...
});

If using ExtJS-3, try:

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';
        }
    }
醉殇 2024-11-16 10:19:37

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

What you need to do is implement a nested grid using the expander plugin. On the click or expand event, you can use your row's ID as a key to load the sub-rows.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文