首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >如何在Wicket中单击按钮enabled=false?

如何在Wicket中单击按钮enabled=false?
EN

Stack Overflow用户
提问于 2014-02-25 14:32:40
回答 1查看 3.1K关注 0票数 7

我想要的:

  • 如果我单击一个按钮,在其他方法(在单击中)结束之前,不应该启用(而不是可单击),只有在方法结束之后。

下面是我的按钮代码:

代码语言:javascript
运行
复制
@Override
protected void onInitialize() {
    add(createOkLink());
}

private IndicatingAjaxLink<Void> createOkLink() {
    final IndicatingAjaxLink<Void> ret = new IndicatingAjaxLink<Void>("okLink") {
        private static final long serialVersionUID = 1L;
        @Override
        public void onClick(AjaxRequestTarget target) {
            //when I click on it, this button (link) should not be enabled while the rest of the methods are not finished.
            method1(); //about 2-5 seconds running time
            method2(); //about 2-5 seconds running time
            method3(); //about 2-5 seconds running time
            feedback.success("success");
            target.add(feedback);
            //after every method has finished, the button should be clickable againg
        }
    };
    ret.setOutputMarkupId(true);
    return ret;
}

我希望有人能帮我!

我用的是Wicket 6。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2014-02-25 18:07:16

代码语言:javascript
运行
复制
    final Form<?> form = new Form<>("form");
    form.setOutputMarkupId(true).setOutputMarkupPlaceholderTag(true);
    add(form
        .add(new FeedbackPanel("feedback"))
        .add(new AjaxButton("button") {
            @Override
            protected void onSubmit(AjaxRequestTarget target, Form<?> form) {
                info(System.currentTimeMillis());
                target.add(form);
                try {
                    TimeUnit.SECONDS.sleep(1);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            @Override
            protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
                super.updateAjaxAttributes(attributes);
                attributes.getAjaxCallListeners().add(new AjaxCallListener()
                    .onBefore("$('#" + getMarkupId() + "').prop('disabled',true);")
                    .onComplete("$('#" + getMarkupId() + "').prop('disabled',false);"));
            }
        }));
票数 11
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/22017244

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档