By moving to 1.3b3 the problem disappeared:

https://issues.apache.org/jira/browse/WICKET-774




Eelco Hillenius wrote:
> 
> On 8/27/07, dzenanr <[EMAIL PROTECTED]> wrote:
>>
>> The last major thing for my application to run on Wicket 1.3 are form
>> validation errors. They do not appear on the page where the form is.
>>
>> In Wicket 1.2 I used the following code to report the error in the form:
>>
>> protected void addErrorByKey(String key) {
>>         String validationError = LocalizedText.getText(this, key);
>>         error(validationError);
>> }
>>
>> In Wicket 1.3 I use the following code to report the error in the form:
>>
>> protected void addErrorByKey(String key) {
>>         ValidationError validationError = new ValidationError();
>>         validationError.addMessageKey(key);
>>         error(validationError);
>> }
>>
>> What am I suppose to do to have validation error messages displayed in
>> the
>> FeedbackPanel?
> 
> You don't get any messages at all?
> 
> Eelco
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Form-validation-error-in-Wicket-1.3-tf4337418.html#a12637035
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to