Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Where can I find a spinner component for Wicket?, including Maven repo and a source code example?

share|improve this question
Do you mean a spinner or do you mean an activity indicator, if you mean activity indicator this is a duplicate of stackoverflow.com/q/5582084/569659 – Tnem Jun 8 '11 at 9:27
I mean something like JSpinner for Swing: "A single line input field that lets the user select a number or an object value from an ordered sequence. Spinners typically provide a pair of tiny arrow buttons for stepping through the elements of the sequence." – Carlos P Jun 8 '11 at 16:26

2 Answers

up vote 4 down vote accepted

wicketstuff-minis has an implementation of a spinner. There is also a wicketstuff-minis-examples project

The maven repos are:

<dependency>
    <groupId>org.wicketstuff</groupId>
    <artifactId>minis</artifactId>
    <version>1.4.17.2</version>
</dependency>

and

<dependency>
    <groupId>org.wicketstuff-examples</groupId>
    <artifactId>minis</artifactId>
    <version>1.4.17.2</version>
</dependency>
share|improve this answer

Let your component implement IAjaxIndicatorAware and provide it with the markup ID for your spinner, or use IndicatingAjaxLink, IndicatingAjaxFallbackLink and IndicatingAjaxButton.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.