如何根据 ext js 网格中另一个单元格的值向单元格添加类

发布于 2024-12-04 17:20:00 字数 72 浏览 0 评论 0原文

这就是我想尝试的,我想根据同一行中另一列的值突出显示一个单元格。我知道渲染器函数可以在渲染时设置列的样式,但是是否可以访问另一列?

This is what i want to try , i want to highlight a cell according to the value of another column in the same row. I know that the renderer function can style the column on render, but is it possible to access another column ?

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

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

发布评论

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

评论(1

凡间太子 2024-12-11 17:20:00

渲染器有一组参数。第三个参数是记录。

renderer: function(value, metaData, record){
    var anotherColumnValue = record.get('anotherColumnDataIndex');
    // ...
}

Renderer has set of parameters. The third parameter is record.

renderer: function(value, metaData, record){
    var anotherColumnValue = record.get('anotherColumnDataIndex');
    // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文