Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set a button enabled=false after clicking on it in Wicket?

What I want:

  • if I click on a button, it should be NOT enabled (not clickable) BEFORE the other methods (in the clicking) would finish, only AFTER the methods' end.

Here is my code to the button:

@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;
}

I hope someone can help me!

I am using Wicket 6.

like image 709
victorio Avatar asked Feb 25 '14 14:02

victorio


1 Answers

    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);"));
            }
        }));
like image 143
tetsuo Avatar answered Oct 27 '22 01:10

tetsuo