Re: T5: BeanEditFrom error-reporting

2007-09-02 Thread Robin Helgelin
On 9/2/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > > and > > @Component > private BeanEditForm myForm; > > > If you use in the element, that implicitly defines the type there, > causing a conflict. In you example, you likely used two different ids (one > specified in the template, on in

Re: T5: BeanEditFrom error-reporting

2007-09-02 Thread Howard Lewis Ship
and @Component private BeanEditForm myForm; If you use in the element, that implicitly defines the type there, causing a conflict. In you example, you likely used two different ids (one specified in the template, on in your class), thus the error message. On 9/2/07, Robin Helgelin <[EMAIL P

T5: BeanEditFrom error-reporting

2007-09-02 Thread Robin Helgelin
Hi, I have a page which uses a BeanEditForm. On validation success I do another few validations that can't be done with current validation. However, I don't see an obvious way to report an error on a specific input field. I've tried @Component(id = "BeanEditForm") private BeanEditForm for