3

我有一个简单的FormPage派生自WebPage这样定义的:

public FormPage() {

    final FeedbackPanel feedback = new FeedbackPanel("feedback");
    add(feedback);

    final TextField<String> entry = new TextField<String>("entry");

    final Button button = new Button("button");
    button.add(new AjaxEventBehavior("onclick") {
        @Override
        protected void onEvent(final AjaxRequestTarget target) {
            System.out.println("Event");
        }
    });

    Form<DataModel> form = new Form<User>("userForm", new CompoundPropertyModel<DataModel>(dataModel)) { 

        @Override
        protected void onValidate() {
            System.out.println("Validate");
            String entryValue = entry.getValue();
            if (entryValue == null || entryValue.length() == 0) {
                error("entry value required");
            }
        };

        @Override
        protected void onSubmit() {
            System.out.println("Submit");
            if (!hasErrors()) {
                String entryValue = entry.getValue();
                if (!entryValue.equals("value")) {
                    error("entry has wrong value");
                }
            }
        };
    };

    form.add(entry);
    form.add(button);
    add(form);
}

我正在尝试在表单提交时做一些事情(在这个例子中只是打印到控制台),所以我附加AjaxEventBehavior了按钮的onclick事件。这完美地工作:在按钮单击时执行操作,但现在没有提交表单。

我也在试验

form.add(new AjaxEventBehavior("onsubmit")

并且此事件处理程序还阻止表单提交。例如,

entry.add(new AjaxEventBehavior("onclick")

允许提交表单,但事件与提交无关。现在我很困惑如何提交我的表单并对此事件执行一些操作。

4

1 回答 1

11

默认情况下,在 Wicket 6 中,附加到组件的行为会阻止默认组件操作发生。

如果要同时触发行为和组件操作,则必须在行为中覆盖 updateAjaxRequestAttributes 方法:

@Override
protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
    super.updateAjaxAttributes(attributes);
    attributes.setAllowDefault(true);
}
于 2012-11-04T12:38:10.963 回答