Re: prevent reset of bean after submit

2004-12-30 Thread Cliff
help me design > the project in a better way . . > > Regards, > Sachin Hegde > > > -- Original Message --- > From: "Cliff" <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Sent: Thu, 23 Dec 2004 02:21:16 - > Subject: Re: prevent rese

Re: prevent reset of bean after submit

2004-12-28 Thread Radu Badita
n a better way . . > > Regards, > Sachin Hegde > > > -- Original Message --- > From: "Cliff" <[EMAIL PROTECTED]> > To: struts-user@jakarta.apache.org > Sent: Thu, 23 Dec 2004 02:21:16 - > Subject: Re: prevent reset of bean af

Re: prevent reset of bean after submit

2004-12-28 Thread sachin
etter way . . Regards, Sachin Hegde -- Original Message --- From: "Cliff" <[EMAIL PROTECTED]> To: struts-user@jakarta.apache.org Sent: Thu, 23 Dec 2004 02:21:16 -0000 Subject: Re: prevent reset of bean after submit > You may consider put all the fields which are popula

Re: prevent reset of bean after submit

2004-12-25 Thread struts lover
If you have your reset method empty, I dont think it will reset your form. --- sachin <[EMAIL PROTECTED]> wrote: > hi all , > > On submit of a form , struts resets the bean before > populating the form . > For that perticular action can i stop the resetting > of bean ? > > in my application i

Re: prevent reset of bean after submit

2004-12-24 Thread Cliff
You may consider put all the fields which are populated from frist.jsp in the second.jsp using hidden field. I think there are so many solutions can solve this problem. Good Luck Merry Christmas Cliff --- In [EMAIL PROTECTED], Hubert Rabago <[EMAIL PROTECTED]> wrote: > It's possible that you

Re: prevent reset of bean after submit

2004-12-21 Thread Hubert Rabago
It's possible that you have your bean in request scope. If so, a new bean is being used for each request. Try putting your bean in session scope. Hubert On Tue, 21 Dec 2004 12:49:55 +0530, sachin <[EMAIL PROTECTED]> wrote: > hi all , > > On submit of a form , struts resets the bean before popu

prevent reset of bean after submit

2004-12-20 Thread sachin
hi all , On submit of a form , struts resets the bean before populating the form . For that perticular action can i stop the resetting of bean ? in my application i need to pupulate one bean from two forms . It has following structure :- JSP pages - First.jsp , Second.jsp Actions - FirstActio