Wizard using ListView and RadioGroup

2010-03-28 Thread Robert Gründler
Hi all, i'm working on a Wizard that displays a list of Addresses in one step, where an address can be selected using a radiobutton. The relevant code of the addresslist-wizardstep looks like this: addressList = new ArrayListUserAddress(user.getAddresses()); final RadioGroup group = new

Re: Weird feedback message formats

2010-03-28 Thread ayman elwany
is this solution could be used for feedback messages in feedback panels instead of the componenet/field path as resource key ?? On Thu, Mar 25, 2010 at 8:18 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Use same label localization property name as wicket component id:

change tr background color when ListView iterate....

2010-03-28 Thread Arnaud Garcia
Hello, Using a ListView on a tr html markup, I would like to alternate the background color of each new tr when the list iterate... I just find how to do this on the label inside the td... not on the tr level..., so just the background color of the title is changed and not the full line ! here

Re: change tr background color when ListView iterate....

2010-03-28 Thread Mauro Ciancio
Take a look at: ListItem#newItem(final int index) and: org.apache.wicket.markup.repeater.OddEvenItem. Cheers. On Sun, Mar 28, 2010 at 11:40 AM, Arnaud Garcia arn...@imagemed-87.com wrote: Hello, Using a ListView on a tr html markup, I would like to alternate the background color of each

How to customize FormComponentFeedbackBorder's error indicator

2010-03-28 Thread David Chang
I would like to replace the default indicator asterisk with an image. How can I do it? What is the most elegant way? Thanks for any info or pointer. All the best, David - To unsubscribe, e-mail:

Re: Wicketstuff updated!

2010-03-28 Thread Major Péter
JavaEE-Inject is tested, and OK. It looks like there are projects, which are depending to a specific wicket version (1.4-rc*, 1.4.5): * multi-text-input-parent * flot-parent/flot * flot-parent/flot-examples * wicket-html5-parent * ddcalendar-parent/ddcalendar *

Wickit JMS

2010-03-28 Thread Marek Šabo
Hi all, I would like to ask if anyone ever tried asynchronous messaging systems like JMS with Wicket. I will be implementing some modules which will do some work on configuration files and then return. Is there a way to get these events to wicket asynchronously and then probably contact user via

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread James Perry
It not a wicket issue. You have two input elements with the same name: 1.input type=text name=item_name 2.input type=text name=item_name wicket:id=itemName Remove the line 1 and voila! Best, James. On 28 March 2010 22:06, victorTrapiello vic...@trapiello.net wrote: Hello guys! I´m trying to

Prevent messages from being displayed in FeedbackPanel if displayed in ComponentFeedbackPanel

2010-03-28 Thread David Chang
I have a page which has a FeedbackPanel for collecting and displaying messages. On this page there is also a form. I use ComponentFeedbackPanel to display any validation error messages for fields. When a validation error happens, it ends up being displayed in both FeedbackPanel and

Re: Prevent messages from being displayed in FeedbackPanel if displayed in ComponentFeedbackPanel

2010-03-28 Thread Jeremy Thomerson
You could use a custom IFeedbackMessageFilter -- Jeremy Thomerson http://www.wickettraining.com On Sun, Mar 28, 2010 at 9:42 PM, David Chang david_q_zh...@yahoo.comwrote: I have a page which has a FeedbackPanel for collecting and displaying messages. On this page there is also a form. I

Re: Wickit JMS

2010-03-28 Thread Jeremy Thomerson
I have used ActiveMQ (and the Spring integration(s)) extensively with Wicket. But I have not really provided AJAX feedback associated with it. This would be fairly easy to do. Just have an AJAX timer that polls a middle-tier service to get the status of the pending changes / work / etc --

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread victorTrapiello
hahahha it is not as easy as you think, I just put these 2 lines to show how it is in the reallity and how I´m trying to do with wickets, I only have this one on in my progrmam input type=text name=item_name wicket:id=itemName msc65jap wrote: It not a wicket issue. You have two input

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread Martin Makundi
Do you use POST or GET ? ** Martin 2010/3/29 victorTrapiello vic...@trapiello.net: hahahha it is not as easy as you think, I just put these 2 lines to show how it is in the reallity and how I´m trying to do with wickets, I only have this one on in my progrmam input type=text name=item_name

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread victorTrapiello
Yes I use POST, I´m not using any wicket form, I just set to my value a Tesxt fiels and then I add the wicket in this form, but as I said bfore it seems the wicket is lost by the way to pay pal because I appears empty, I´m thinking now maybe is something related with the pay pal´s

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread Steve Swinsburg
Why not process your form normally via Wicket, then make a POST request to PayPal? cheers, Steve On 29/03/2010, at 4:49 PM, victorTrapiello wrote: Yes I use POST, I´m not using any wicket form, I just set to my value a Tesxt fiels and then I add the wicket in this form, but as I said