pundarik rajkhowa wrote:
After I submit the form and open it again for new data entry, the form retains its old values. If I call form.reset(), it fails to clear the bean. Do I need to override the reset method and manually clear values of all bean elements?
Yes--that is the purpose of the reset() method, to implement whatever non-standard functionality you need. The default doesn't do anything, so session-scoped forms will retain whatever values are already in the session.
Dave --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

