Hi,
 
I have a search.jsp which contains two forms search form and a action
form. 
 
The search form submits all the search criteria to the action class
which queries the DB then returns a result.  The action form then
decides which action to do with what result.
 
The problem I have is how do I reset the search form and the action form
with one button.
 
I have two buttons on the search form, submit and reset.  When I press
reset I want to reset the search criteria and clear all the results
which are being displayed.  
 
My struts config is as follows:
 
<action path="/searchClient"
        type="com.medina.web.action.SearchClientAction"
        name="searchClientForm"
        scope="session"
        input="/searchClient.jsp"
            validate="true">
        <forward name="success" path="/searchClient.jsp"/>
    </action>
    
    <action path="/actionClient"
        type="com.medina.web.action.ActionClientAction"
        name="actionClientForm"
        scope="request"
        input="/searchClient.jsp"
            validate="true">
        <forward name="edit" path="/editClient.jsp"/>
        <forward name="delete" path="/deleteClient.jsp"/>
            <forward name="failure" path="/searchClient.jsp"/>
    </action>
 
I have the search form in the seesion scope so when the results are
validated they are still displayed and do not disappear.

Reply via email to