Re: Generic message when component feedback has error

2017-04-19 Thread Sebastien
Hi, Some leads: - session#error - component.send(BREATH, component.getPage(), MyErrorPayload(myMessage)) (typing from mobile, arguments might not be in the correct order) Hope this helps Sébastien On Apr 19, 2017 21:47, "Entropy" <blmulholl...@gmail.com> wrote: We're

Generic message when component feedback has error

2017-04-19 Thread Entropy
We're using component feedback panels, and when a component has a message we are filtering that message out from the parent with a filter that tosses anything that doesn't link to the form or page. Works fine. However, when there is a component message on any component, we want a generic message

Re: Display component feedback message once: safety net renders them always before

2011-01-05 Thread Martin Grigorov
Hi Jeremy, In the blog you use code as: 1. final TextField name = new TextField(name, new PropertyModel(productModel, name)); 2. name.setRequired(true); 3. name.add(new FeedbackPanel(nameFeedback, new ComponentFeedbackMessageFilter(name))); I wonder what kind of .html do you

Re: Display component feedback message once: safety net renders them always before

2011-01-05 Thread Jeremy Thomerson
On Wed, Jan 5, 2011 at 3:12 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi Jeremy, In the blog you use code as:   1. final TextField name = new TextField(name, new    PropertyModel(productModel, name));   2. name.setRequired(true);   3. name.add(new FeedbackPanel(nameFeedback, new    

Re: Display component feedback message once: safety net renders them always before

2011-01-04 Thread Joseph Pachod
/Display-component-feedback-message-once-safety-net-renders-them-always-before-tp3068969p3167130.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Display component feedback message once: safety net renders them always before

2011-01-04 Thread Jeremy Thomerson
On Thu, Dec 2, 2010 at 5:52 AM, Joseph Pachod j...@thomas-daily.de wrote: Hi I'm trying to apply the behaviors presented by Alastair Maw in his presentation Wicket Forms with Flair (cf http://code.google.com/p/londonwicket/downloads/detail?name=LondonWicket-FormsWithFlair.pdfcan=2q=)

Re: Display component feedback message once: safety net renders them always before

2011-01-03 Thread Pedro Santos
/Display-component-feedback-message-once-safety-net-renders-them-always-before-tp3068969p3167130.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Display component feedback message once: safety net renders them always before

2011-01-03 Thread Pedro Santos
to be sure of the feedback message display), but at least I've found a way to go. :) ++ joseph -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Display-component-feedback-message-once-safety-net-renders-them-always-before-tp3068969p3167130.html Sent from the Users

Re: Display component feedback message once: safety net renders them always before

2010-12-29 Thread joseph.pachod
visible in order to be sure of the feedback message display), but at least I've found a way to go. :) ++ joseph -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Display-component-feedback-message-once-safety-net-renders-them-always-before-tp3068969p3167130.html Sent from

Re: Display component feedback message once: safety net renders them always before

2010-12-06 Thread Pedro Santos
Hi Joseph, I use an ComponentFeedbackPanel next to the component when I want its feedback message presented in an special place. On Thu, Dec 2, 2010 at 9:52 AM, Joseph Pachod j...@thomas-daily.de wrote: Hi I'm trying to apply the behaviors presented by Alastair Maw in his presentation Wicket

Display component feedback message once: safety net renders them always before

2010-12-02 Thread Joseph Pachod
Hi I'm trying to apply the behaviors presented by Alastair Maw in his presentation Wicket Forms with Flair (cf http://code.google.com/p/londonwicket/downloads/detail?name=LondonWicket-FormsWithFlair.pdfcan=2q= ) Basically, Alastair uses behavior to display feedback message specific to some

Re: Component feedback

2009-12-04 Thread Martin Makundi
You can filter feedback messages.. have a look inside FeedbackPanel. ** Martin 2009/12/4 Sam Barrow s...@sambarrow.com: Hi. I have a FormComponentPanel called MoneyField with a couple of text boxes inside. Is there any way to make a new MoneyField with a ComponentFeedbackPanel that collects

RE: Validation component feedback in table column

2009-07-17 Thread Russell Simpkins
To: users@wicket.apache.org Subject: Validation component feedback in table column Date: Fri, 17 Jul 2009 10:34:19 +0200 I have been experimenting with this for while more, but I can't seem to get it to work as I want. I have attached a small quickstart. I have a table with an input field

RE: Validation component feedback in table column

2009-07-17 Thread Kenneth NA
this problem? /Kenneth From: russellsimpk...@hotmail.com To: users@wicket.apache.org Subject: RE: Validation component feedback in table column Date: Fri, 17 Jul 2009 06:03:35 -0400 Use the ComponentFeedbackPanel, ccFeedback = new ComponentFeedbackPanel(ccNumberError,ccNumber

Validation and component feedback for editable column component in table/list

2009-07-11 Thread Kenneth NA
I am a new user of wicket and I have been experimenting the last days. I am trying to migrate an existing JSP applikation to wicket. I now have a problem with feedback and validation error display. In the existing applikation, the validation errors are display next to the fields,

Re: Validation and component feedback for editable column component in table/list

2009-07-11 Thread Jeremy Thomerson
Seems like you might be missing the part where you have to add a feedback panel to display the error messages in a form. Since you mention that your previous application showed the message near the field, this page might help you: