用于检查 Flex 中是否已编辑任何组件的全局标志
我需要使用全局标志。 每当我更改数据网格(即添加/更新行、更改屏幕中的复选框、单选按钮等)时,都会设置此标志。 另外,在什么情况下可以设置这个全局变量。 “change()”或“click()”会起作用吗? 在这方面需要一些想法。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从它的声音来看,您不想将任何事件添加到数据网格中。
您实际上想监听它的 dataProvider。
我假设您使用 ArrayCollection 作为 dataProvider。 您需要在 COLLECTION_CHANGE 上向 arrayCollection 添加事件监听器(请参阅 此处了解详细信息)。
然后,您可以在每次调度该事件时更新全局标志。
From the sounds of it you don't want to add any events to your datagrid.
You actually want to listen on it's dataProvider.
I'll assume you are using an ArrayCollection, as the dataProvider. You'll want to add an eventListener to the arrayCollection on COLLECTION_CHANGE (see here for details).
Then you can update your global flag every time that event is dispatched.