ExtJS 4 TreeGrid - 从子记录引用父记录

发布于 2025-01-08 04:35:04 字数 44 浏览 0 评论 0原文

我想制作一个自定义渲染器,其中子记录可以引用父记录中的一些数据。这可能吗?

I'd like to make a custom renderer where a child record can reference some data from the parent record. Is this possible?

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

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

发布评论

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

评论(1

爱的十字路口 2025-01-15 04:35:04

您的渲染器在存储中传递,所以是的,您可以使用存储中的任何(当前加载的)数据来渲染结果。
所以像这样的东西应该有效(未经测试):

column: {
    renderer: function(value, metaData, record, rowInde, colIndex, store, view) {
        return value + (record.parentNode ? ' [' + record.parentNode.get('fieldName') + ']' : '');
    }
}

请参阅 http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.column.Column

You renderer gets passed in the store, so yes, you can use any (currently loaded) data from the store to render the result.
So something like this should work (untested):

column: {
    renderer: function(value, metaData, record, rowInde, colIndex, store, view) {
        return value + (record.parentNode ? ' [' + record.parentNode.get('fieldName') + ']' : '');
    }
}

See http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.column.Column

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