我有一个简单的,神秘的标签问题,并使用ajax显示它。

public class ChecklistTemplateForm extends Form{
    private static final long serialVersionUID = 1L;
    private Label cantSaveLabel;
    public ChecklistTemplateForm(String id) {
        super(id);
        cantSaveLabel = new Label("cantSaveLabel", "Name is not unique, enter another name and try saving again.");
        cantSaveLabel.setVisible(false);
        cantSaveLabel.setOutputMarkupId(true);
        add(cantSaveLabel);
        add(new AjaxButton("saveButton") {
            private static final long serialVersionUID = 1L;
            @Override
            protected void onSubmit(AjaxRequestTarget target, Form<?> form) {
                target.addComponent(cantSaveLabel);
                //here i do some stuff to decide if canSave is true or false
                if (canSave){
                    setResponsePage(AdminCheckListPage.class);
                }
                else if (!canSave){
                    cantSaveLabel.setVisible(true);
                    System.out.println(canSave);
                }
            }
        });
    }

}

有趣的是,canSave为false,System.out.print可以工作,但是cansavelabel永远不可见。我想念什么?

最佳答案

您不能通过Ajax更新标签,因为它不在呈现的页面中。这

cantSaveLabel.setVisible(false);

使得Label不在HTML中。您将需要用另一个组件(WebMarkupContainer)围绕Label,在此组件上调用setOutputMarkupId(true)并将此容器添加到标签的AjaxRequestTarget实例中。

10-08 13:38