Re: how to add parameters to result type

2009-07-06 Thread Greg Lindholm
Passing parameters to a JSP page doesn't make any sense. Your JSP page has access to all your Action properties (that have getters) with the struts tags (or even with EL syntax). To get the "month" from your action just use in your JSP (assuming you have a getMonth() method in the action). The s

Re: how to add parameters to result type

2009-07-06 Thread Bhaarat Sharma
following the documentation on this page: http://struts.apache.org/2.x/docs/result-configuration.html I tried something like this /reports/identity/identitreport.jsp ${pageIndex} ${phaPageSize}

Re: how to add parameters to result type

2009-07-03 Thread Dave Newton
Bhaarat Sharma wrote: I have a simple result type like the following /thirdpartyincome/pendingVerification.jsp how can i add parameters to this resulttype? and have values of parameters come from my action class? for example when result type is 'redirect-action' then we can do so

how to add parameters to result type

2009-07-03 Thread Bhaarat Sharma
I have a simple result type like the following /thirdpartyincome/pendingVerification.jsp how can i add parameters to this resulttype? and have values of parameters come from my action class? for example when result type is 'redirect-action' then we can do something like this