Yep, that did it.  Thank you very much!

bye-Ben

--- Hubert Rabago <[EMAIL PROTECTED]> wrote:

> Try modifying the mapping of /getQueryPage to
> include your form, but
> also not to validate it.  Also, make sure that the
> form is placed on
> the same scope as that for /getReport.
> 
> So, something like this:
> 
> <action path="/getQueryPage"
>     type="org.apache.struts.actions.ForwardAction"
>     form="whateverFormYoureUsingForGetReport"
>     validate="false"
>     scope="whateverScopeYoureUsingForGetReport"
>     parameter="query.jsp"/>
> 
> What I think will happen on initial load is Struts
> will create the
> form but will have no values to populate it with,
> and your form will
> show with empty values.  When refreshPage() gets
> called, it submits to
> this mapping, Struts will create the form, populate
> the values, and
> have it available for when query.jsp gets redrawn.
> 
> If it doesn't work, post here what happened.  You
> may have to put an
> Action in place of the ForwardAction to handle the
> form.
> 
> Hubert




                
_______________________________
Do you Yahoo!?
Declare Yourself - Register online to vote today!
http://vote.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to