ExtJS:确保用户提交表单
当用户可以进行各种计算时,我得到了几种表格。表单在用户填写输入字段后提供结果,当大部分或全部填写时 onChange 事件将计算并显示结果。
结果需要通过提交表格来保存。一些用户很高兴看到结果,并且不会通过关闭浏览器或离开页面来继续提交/保存操作。
我如何捕获这些操作并强制它们在 ExtJS 中保存操作?
I got several form when user can make various calculation. Forms provide results after user fills in input fields, when most of them or all are filled in onChange event will calculate and display result.
Results need to be saved by submiting the form. Some of user are happy to see result and do not proceed with submit / save operation by closing browser or leaving the page.
How I can catch those action and enforce them to save operation in ExtJS ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
onbeforeunload
事件上设置一个事件侦听器,测试用户是否提交了表单。查看:https://developer.mozilla.org/en/DOM/window.onbeforeunload< /a>
You could set up an event listener on the
onbeforeunload
event, testing to see if the user submitted the form or not. Check out:https://developer.mozilla.org/en/DOM/window.onbeforeunload