Properties lost after input result (S2)

2008-12-28 Thread Marsman
Hi! I got an action to provide some properties (simple types and objects) for a jsp with a form. After the user has entered invalid data, the input result was returned and the page was displayed again. But the properties are all empty. I think, the reason is the action, that was not called

Re: Properties lost after input result (S2)

2008-12-28 Thread Felipe Fraga
Use hidden fields to also store the properties, this way they are sent with the request and so repopulated onde the jsp returns from the validator. Felipe Fraga On Sun, Dec 28, 2008 at 2:45 PM, Marsman mars@gmx.de wrote: Hi! I got an action to provide some properties (simple types and

Re: Properties lost after input result (S2)

2008-12-28 Thread Marsman
Felipe Fraga wrote: Use hidden fields to also store the properties, this way they are sent with the request and so repopulated onde the jsp returns from the validator. Yes, I know that way. But when I have a page with some lists above of a form? As I know, those objects couldn't be

RE: Properties lost after input result (S2)

2008-12-28 Thread Martin Gainty
after input result (S2) Felipe Fraga wrote:Use hidden fields to also store the properties, this way they are sent with the request and so repopulated onde the jsp returns from the validator.Yes, I know that way. But when I have a page with some lists above of a form? As I know