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]

Reply via email to