当单元格的值大于 6 时,将数据网格单元格的背景颜色设置为黄色
我正在使用 flex 3.5 。当数据网格中的数据超过 6 时,我想将数据网格中单元格的背景颜色设置为黄色。
Iam using flex 3.5 . I want to set the back ground color of cell in a datagrid to yellow when the data in it is more than 6 .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建自定义渲染器并在设置数据属性时测试值:
请记住,如果测试失败,您需要恢复颜色,因为列表重用渲染(如果不这样做,您将获得随机的黄色背景)。
Create a custom renderer and test the value when the data property is set:
Remember that you need to revert the color if the test fails since Lists reuse renders (you would get random yellow backgrounds if you dont).
我过去使用
AdvancedDataGrid
和AdvancedDataGridRendererProvider
做过类似的事情。我使用的是 Flex 4.0 SDK,但由于AdvancedDataGrid
组件在 3.5 和 4.0 之间没有更改,因此代码应该类似。渲染器“MyRenderer.mxml”:
使用渲染器:
编辑: 我在函数中设置了backgroundColor,以便当itemRenderers被回收时函数将被调用并将背景颜色设置为正确的值。
I've done something similar in the past using the
AdvancedDataGrid
and aAdvancedDataGridRendererProvider
. I'm using the Flex 4.0 SDK but since theAdvancedDataGrid
component hasn't changed between 3.5 and 4.0, the code should be similar.The renderer "MyRenderer.mxml":
Using the renderer:
EDIT: I set the backgroundColor in a function so that when the itemRenderers get recycled the function will get called and set the backgroundColor to the correct value.