I’ll make this short:
Is there a way / library in Wicket to show an activity indicator? You know, the spinning thing that moves while the user is waiting for something, or is it just a javascript thing?
Thanks for your help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If this is an ajax operation then you can look at the implementations of
IAjaxIndicatorAware. These implementations will show a ‘spinner’ while the operation is processing.e.g.
IndicatingAjaxButtonandIndicatingAjaxLinkYou could also look at
AjaxIndicatorAppenderand alter it your own needs for non ajax things ?