使用项目单击有条件地更改数据网格行中的图标
我必须设计一个数据网格,在第一列中我必须使用闭合的锁图标。当我单击数据网格中的一行时,所选行的图标应更改为打开的锁定图标。我如何在 Flex 3 中完成这项任务。 请帮我。
I have to designed a datagrid, in first column i have to use closed lock icon. when i click a row in a datagrid the selected rows' icon should change as opened lock icon. how i can achive this task in flex 3.
please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当数据更改时,有两种更新 itemRenderer 的选项。
为你工作。
事件并在该事件处理程序中执行更新。
There are two options for updating an itemRenderer when the data changes.
works for you.
event and perform your updates in that event handler.
这是我实现上述任务的编码:当锁定为真时,将显示锁定图像,而当显示假笔图像时,将显示锁定图像。单击项目时,锁定将更改为 true 到 false,反之亦然。
this is my coding for achieving above task: When lock is true lock image will display when false pen image will display. On item click the lock will be changed to true to false and vice versa..