You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by netizen1 <ne...@attbi.com> on 2003/06/05 17:05:05 UTC

advice on reset method not being called 2nd time

I have 2 jsp page that has their appropriate actions and forms:
1.  admin
2.  creating a new survey

both scopes are request

1.
 * @struts.action name="SurveyAdminForm"
 *                                              path="/SurveyAdmin"
 *                                              validate="true"
 *                                              scope="request"
 *                                              input="/survey/survey_admin.jsp"
 * 
 * @struts.action-forward name="New" path="/survey/new_survey_question.jsp" redirect="true"
 * @struts.action-forward name="Edit" path="/survey/edit_survey.jsp" redirect="true"
 * @struts.action-forward name="Reports" path="/survey/survey_reports.jsp" redirect="true"

2.
 
 * @struts.action name="NewSurveyQuestionForm"
 *                                              path="/NewSurveyQuestion"
 *                                              validate="true"
 *                                              scope="request"
 *                                              input="/survey/new_survey_question.jsp"
 * @struts.action-forward name="Cancel" path="/survey/survey_admin.jsp" redirect="true"
 * @struts.action-forward name="Save" path="/survey/survey_admin.jsp" redirect="true"


 When i call #1 first its reset is called. then i select the new
 button that calls #2 (create a new survey).  The first time #2 is
 called its reset() method is executed.  The problem i have is after i
 submit the data on #2 it goes back to #1. But when i select new again
(to go to #2) the reset() method is never executed.  But the reset()
method for #1 is always called.

Any ideas on this?
Thanks


-- 
Best regards,
 netizen1                          mailto:netizen1@attbi.com



---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org