Hello, Were you able to get the "row" to work? I am trying to get hold of the my properties using the "row" variable inside of a displaytag table. The table itself if working fine.
I have tried both the JSTL and the OGNL way but the "row" is always empty. Does anyone know how to get this working for Struts2? Any help is appreciated. Thank you. - Kishan Jeromy Evans - Blue Sky Minds wrote: > > >> 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] > > > -- View this message in context: http://www.nabble.com/Displaytag-help-in-Struts-2-tf4028889.html#a11650054 Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]