DataGrid 列选择事件
当您单击可编辑字段进行编辑,然后单击关闭该字段时,会调用什么事件?在使用 Flex 4 的数据网格中?如果我没有多大意义,我正在尝试创建一个数据网格,您可以在其中编辑字段,一旦编辑完这些字段,应用程序就会调用一个事件侦听器来触发保存方法。
What event is called when you click on an editable field to edit it, and then click off of the field? in a datagrid using Flex 4? If I'm not making much sense I'm trying to make a datagrid where you can edit the fields and once you're done editing those fields the application calls an event listener which triggers a save method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是供将来参考的答案:
DataGridEvent.itemEditBegin 和 DataGridEvent.itemEditEnd。
来自 flex 文档。
Here is the answer for future reference:
DataGridEvent.itemEditBegin and DataGridEvent.itemEditEnd.
From the flex docs.