当 getPrecondition return false 时,Wicket 6.18 AjaxEventBehavior("onkeypress")

Wicket 6.18 AjaxEventBehavior("onkeypress") when getPrecondition return false

我正在尝试将 AjaxEventBehavior("onkeypress") 添加到 TextField,我正在这样做

TextField<String> input = new TextField<String>("input");
    input.setOutputMarkupId(true);
    input.add(new AjaxEventBehavior("onkeypress") {

        @Override
        protected void onEvent(AjaxRequestTarget target) {
            Panel.this.info("hello!");
        }

        @Override
        protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
            super.updateAjaxAttributes(attributes);

            attributes.getAjaxCallListeners().add(new AjaxCallListener(){
                public CharSequence getPrecondition(Component component) {
                    return "if (Wicket.Event.keyCode(attrs.event)  == 13) " +
                            " { return true; } " +
                            "else { return false; }";
                }
            });
        }
    });

当我在输入中按 Enter (keyCode==13) 时,我的反馈面板显示你好!但是当我按下另一个键时没有任何反应 Wicket Ajax 调试得到信息:"Ajax request stopped because of precondition check" 我的 ajaxIndicator 启动并且永不停止。

我有一个 application.js 这个

Wicket.Event.subscribe('/ajax/call/before',showBusysign);
Wicket.Event.subscribe('/ajax/call/success',hideBusysign);
Wicket.Event.subscribe('/ajax/call/failure',hideBusysign);
}

function hideBusysign() {
    document.getElementById('busyIndicator').style.display = 'none';
    hideMask();
}

function showBusysign() {
    document.getElementById('busyIndicator').src = 'img/busy.gif'
    document.getElementById('busyIndicator').style.display = 'inline';
} 

hideBusysign 永远不会被调用,我尝试了这个但不起作用!

@Override
                public CharSequence getFailureHandler(Component component) {
                    return "document.getElementById('busyIndicator').style.display = 'none'; " +
" hideMask();";

这是实现 EnterKeypressEvent 的正确方法吗?

谢谢,最诚挚的问候。

您应该使用 '/ajax/call/beforeSend 而不是 '/ajax/call/beforebeforeSend 仅当所有先决条件都通过时才执行。