I was wondering if anyone has experienced this issue, or has any
advice. All other ajax calls work fine with the IAjaxIndicatorAware
interface on my abstract page, the loading div displays and hides
after the request is finished, however, when using the onSubmit of an
AjaxEditableChoiceLabel to update a panel, the loading div displays
and gets stuck, even after the request is updated. The loading div
will remain on the screen until I refresh it.

Here is my code for the ajax choice label, similar to my other ajax
links. This is being viewed in Chrome by the way,

add(new AjaxEditableChoiceLabel<Integer>("priority", priorities) {
                        @Override
                        protected void onSubmit(AjaxRequestTarget target) {
                                // service call

                                if(target != null)
                                        target.addChildren(getPage(), 
TaskPanel.class);
                        }
                });

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to