Within the displaytag 'display:table' tag, a 'row' object is set into
the page context.
How is this accessible from Struts 2?
#attr is the OGNL to access the page context. #attr.row will access your display tag id object named row

eg. #1

<s:url action="/MyAction.action" value="%{#attr.row.param1}"></s:url>   


eg. #2

<display:table name="list" id="row">
    <s:set name="myrow" value="#attr.row"/>
     <s:url action="/MyAction.action" value="%{#myrow.param1}"></s:url>

#attr is described here:
http://struts.apache.org/2.x/docs/ognl.html

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

Reply via email to