Here is the issue:
I have a block of code that needs to be run on several different jsp's.
Sometimes in a loop other times just once.

The common code would be something like below
File: callPassRow.jsp

<tr id="sub-<s:property value="#parameters.param1"/>">
  <td class="canFade indent2"><s:property value="name"/></td>
  <td class="canFade<s:property value="formattedDates"/> </td>
...
</tr>


File: Random jsp's
The calling code is the following.
<s:push value="callPass">
  <s:include value="/web/common/callpassRow.jsp" >
    <s:param name="param1" value="%{'01234'}"/>    
  </s:include>
</s:push>


I am not sure if this is the best way to implement this in struts2.
Currently I have access to the bean data but the parameter data doesn't
seem to be available in the included page.  

Any ideas?
Thanks,
Scott 


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

Reply via email to