想要在 jsf 中的 a4j 按钮的 Enter Key 上提交 ajax 表单
我有一个带有 a4j:commandbutton 的 ajax 表单。我想按 Enter 键提交表单。 我在命令按钮上使用 onkeypress 来检查 Enter 键按下情况。 该脚本被正确调用,并且在 keycode =13 检查后,表单未提交。 仅当我使用警报框时才会提交它。
我知道由于我使用的是 ajax,因此需要一些延迟来处理,因此这是使用警报框完成的。但如果我希望它在没有警报框的情况下提交?怎么办?
代码片段: 函数submitOnEnter(e) {
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;
if (keycode ==13)
{
var form =#{rich:element('loginform:submituser')};
alert('in alert'+form.click()); // this works and form gets submitted
//form.click(); // i want this to work.
return false;
}
else
return true;
}
提前致谢。
I have an ajax form with a a4j:commandbutton. I want to submit the form on press of Enter key.
I am using onkeypress on the commandbutton to check the enter key press.
The script is called properly and after the keycode =13 check, the form doesnt get submitted.
It gets submitted only if I use an alert box.
I know as I am using ajax, it needs some delay to process, so that is done using the alert box. But if I want it to submit without the alert box?? how to do that?
Code snippet:
function submitOnEnter(e)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;
if (keycode ==13)
{
var form =#{rich:element('loginform:submituser')};
alert('in alert'+form.click()); // this works and form gets submitted
//form.click(); // i want this to work.
return false;
}
else
return true;
}
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 richfaces 热键功能来实现此目的。我可以理解的是您想要使用 Enter 键提交表单。如果我的假设是正确的,那么使用以下代码
You can use richfaces hotkey functionality for achieving this.What I can fathom is that you want to submit a form using Enter key. If my assumtion is right , then use following code