I've done it a few different ways. One of my favorite ways is to use jqgrid and JSON... This is a bit complicated though, so not for the faint of heart. Constructing a basic table is pretty easy -
<table> <tr> <td>header1</td><td>header2</td> </tr> <s:iterator value="iterableActionProperty" var="record" > <tr><td><s:property value="#record.value1"></td><td><s:property value="#record.value2"/></td></tr> </s:iterator> </table> Of course, you would probably want to properly add theader / tbody tags, but I was too lazy to make this a full-featured example. -Wes On Wed, Sep 2, 2009 at 10:35 AM, Arthur Neves<arthu...@gmail.com> wrote: > Hi, > > I'd like to know, if is there a way to make tables(grids) easily in Struts2? > What do you use? Is there a tag? > -- Wes Wannemacher Head Engineer, WanTii, Inc. Need Training? Struts, Spring, Maven, Tomcat... Ask me for a quote! --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org