想要在 jsf 中的 a4j 按钮的 Enter Key 上提交 ajax 表单

发布于 2024-12-13 04:48:36 字数 709 浏览 1 评论 0原文

我有一个带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雅心素梦 2024-12-20 04:48:36

您可以使用 richfaces 热键功能来实现此目的。我可以理解的是您想要使用 Enter 键提交表单。如果我的假设是正确的,那么使用以下代码

<rich:hotKey key="return"
         handler="#{rich:element('Form_Name')}.submit()" 
         selector="#Form_Name"/>

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

<rich:hotKey key="return"
         handler="#{rich:element('Form_Name')}.submit()" 
         selector="#Form_Name"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文