reset method calls

2002-12-05 Thread meissa . Sakho
Hi all, Can someone explains me when(and why if possible) the reset method of Action forms is called. Is it possible that the reset method is called even when there is no explicit call to it ? thanks in advance Meissa -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: reset method calls

2002-12-05 Thread Gemes Tibor
2002. december 5. 13:22 dátummal [EMAIL PROTECTED] ezt írtad: Can someone explains me when(and why if possible) the reset method of Action forms is called. On every reuse of the ActionForm. Because it is necessary for the fields to be resetted to a proper state. Think of checkboxes, password

RE: reset method calls

2002-12-05 Thread ROSSEL Olivier
Can someone explains me when(and why if possible) the reset method of Action forms is called. On every reuse of the ActionForm. Because it is necessary for ^ What are you calling a reuse? Suppose I have something like: a Form is session i fill one field with a

Re: reset method calls

2002-12-05 Thread Gemes Tibor
2002. december 5. 14:34 dtummal ROSSEL Olivier ezt rtad: Suppose I have something like: a Form is session i fill one field with a JSP+action that action redirects to an action that action forwards to a JSP (a tile) that tile calls several actions on of those forwards to another action that

RE: reset method calls

2002-12-05 Thread ROSSEL Olivier
Suppose I have something like: a Form is session i fill one field with a JSP+action that action redirects to an action that action forwards to a JSP (a tile) that tile calls several actions on of those forwards to another action that action wants to fill another field I guess

Re: reset method calls

2002-12-05 Thread Gemes Tibor
2002. december 5. 14:48 dtummal ROSSEL Olivier ezt rtad: At the moment, I use DynaActionsForms. I override them and make an empty reset() method. Nasty, I admit. That's why I would like very much to know how to handle reset() both with Dyna and non-Dyna actionForms. What you say sounds