Flex3 数据网格上的关键事件
我在 Flex3 工作。这里我有一个包含数据的数据网格。有些列是可编辑的。当用户更改列数据时,调用 Web 服务。这里使用 focusOut 函数,我通过 focusOut 函数发送来自数据网格的数据来调用 Web 服务。现在我想在用户更改列数据并按键盘键“Enter”时调用 Web 服务。在这里我可以调用函数,但事件不会将数据网格的数据携带到被调用的函数。有人给我解决这个问题。谢谢。
I am working in Flex3. Here I have a datagrid which contains data. some columns are editable. when the user changes the column data web service is called. Here using function of focusOut, I am calling the web service by sending the data which comes from the datagrid through focusOut function. Now I want to call the web service when the user changes the column data and presses keyboard key 'Enter'. Here I can call function but the event does not carry datagrid's data to the function being called. Some one give me solution for this. Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用enter事件发送数据
我的要求我使用以下内容进行更新过程(我想您也期待相同)
检查代码..希望这会很有用....
在操作脚本中...使用以下内容
use the enter event to send the data
my requirement i used the following for UPDATE PROCESS( I THINK YOU ALSO EXPECTING FOR THE SAME)
CHECKOUT THE CODE..hope this will be useful....
IN ACTION SCRIPT...USE THE FOLLOWING
您可以使用
itemEditor
上的enter
事件将数据发送到您的 Web 服务。这是一个粗略的例子:
You could use the
enter
event on youritemEditor
to send the data to your web service.Here's a rough example:
我认为你应该使用事件 itemEditEnd
详细信息可以在
DataGrid 事件
一个有用的示例是
创建一个Flex 中可编辑的 DataGrid 控件
希望有帮助
I think you should use Event itemEditEnd
details can be found at
DataGrid Events
an useful example is
Creating an editable DataGrid control in Flex
hopes that helps