Qooxdoo 中的餐桌装饰
是否可以设置表格中一行的背景颜色?当条件适用时,我需要突出显示一行。达到 < 效果的东西tr 字体=“...”>...< /tr>
我可以在其中指定“字体”属性。 (我需要突出显示整行)。
Is it possible to set the background color of one Row in a Table? I need to highlight a row when a condition applies. Something to the effect of < tr font="...">...< /tr>
where I can specify the "font" attributes. (I need the whole row to be highlighted).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须对 qooxdoo 默认行渲染器进行子类化才能实现这一点。
看一下下面的代码,您可以在 qooxdoo Playground 中测试它。它向您展示了如何做。
在代码底部,您可以看到新的行渲染器,它标记了第二列中数字大于 5000 的所有行。
问候,
马丁
you have to subclass the qooxdoo default row renderer to make that happen.
Take a look at the following code which you can test in the qooxdoo playground. It shows you how to do it.
At the bottom of the code you see the new row renderer which marks all rows having a bigger number than 5000 in the second column.
Regards,
Martin
这是 Martin Wittemann 的答案的一个版本,可以在操场上运行(1.6 测试):
Here's a version of Martin Wittemann's answer that works in the playground (1.6 tested):