RE: AjaxIndicatingDropDownChoice

2012-03-27 Thread eugenebalt
Thanks, good solution. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxIndicatingDropDownChoice-tp4506224p4509566.html Sent from the Users forum mailing list archive at Nabble.com. - To

RE: AjaxIndicatingDropDownChoice

2012-03-26 Thread Wilhelmsen Tor Iver
> How do I change the cursor to Wait as long as the spinner is also spinning? Use CSS (cursor: progress;) for the element used as the busy indicator, either on id or on class with or without the :hover pseudoclass. - Tor Iver

Re: AjaxIndicatingDropDownChoice

2012-03-26 Thread eugenebalt
context: http://apache-wicket.1842946.n4.nabble.com/AjaxIndicatingDropDownChoice-tp4506224p4506641.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: AjaxIndicatingDropDownChoice

2012-03-26 Thread eugenebalt
Sorry, to clarify: This guy defines AjaxIndicatingDropDownChoice as an abstract class. Why is it abstract? I want to be able to add it to my form like a regular dropdown choice. And why isn't this component already available in Wicket? -- View this message in context: http://apache-w

AjaxIndicatingDropDownChoice

2012-03-26 Thread eugenebalt
I found another user's code for an Ajax-Busy-Indicator DropDownChoice: http://apache-wicket.1842946.n4.nabble.com/Wicket-extensions-AjaxIndicatingDropdownChoice-td3088554.html but how do I use this code? When I construct the DropDown, I need to give it an extra parameter, a MarkupContainer.

RE: Wicket extensions AjaxIndicatingDropdownChoice?

2010-12-15 Thread John Owen
+1 I just made the exact same thing locally the other day. :) -Original Message- From: nino martinez wael [mailto:nino.martinez.w...@gmail.com] Sent: Wednesday, December 15, 2010 2:14 AM To: users@wicket.apache.org Subject: Wicket extensions AjaxIndicatingDropdownChoice? should I add

Re: Wicket extensions AjaxIndicatingDropdownChoice?

2010-12-15 Thread Andrea Del Bene
org.apache.wicket.markup.html.form.IChoiceRenderer; import org.apache.wicket.model.IModel; public abstract class AjaxIndicatingDropDownChoice extends DropDownChoice implements IAjaxIndicatorAware { private AjaxIndicatorAppender indicatorAppender; public AjaxIndicatingDropDownChoice(String id, IModel model, IModel> choi

Wicket extensions AjaxIndicatingDropdownChoice?

2010-12-15 Thread nino martinez wael
abstract class AjaxIndicatingDropDownChoice extends DropDownChoice implements IAjaxIndicatorAware { private AjaxIndicatorAppender indicatorAppender; public AjaxIndicatingDropDownChoice(String id, IModel model, IModel> choices, IChoiceRenderer renderer) { super(id, model, choices, rende