Is there an activity indicator in Wicket?

前端 未结 3 1947
礼貌的吻别
礼貌的吻别 2021-01-16 17:37

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 someth

相关标签:
3条回答
  • 2021-01-16 18:00

    I think this will help

    https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=87917

    The Javascript and Css must be add in the renderHEad-Method

    0 讨论(0)
  • 2021-01-16 18:04

    Check here to generate your own 'activity indicator'.

    Simply show it when busy & hide it afterwards.

    0 讨论(0)
  • 2021-01-16 18:22

    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. IndicatingAjaxButton and IndicatingAjaxLink

    You could also look at AjaxIndicatorAppender and alter it your own needs for non ajax things ?

    0 讨论(0)
提交回复
热议问题