I'm having an issue trying to display things a certain way.  I want to
display 3 thumbnails per-row and wrap on the third.  In the HTML this
is made up of a table tag w/ a single cell.  The thumbnails are
wrapped in their own table so it's something like this:

<table wicket:id="masterListView">
 <tr>
   <td>
     <!-- want this to happen 3x then break! -->
     <table wicket:id="thumbnailListView">
       <tr>
         <td><img src="#" /></td>
         <td>description...</td>
       </tr>
     </table>
   </td>
 </tr>
</table>

Could I maybe print a "<br />" tag after the third thumbnail table?
Can someone suggest a better approach?  I thought if I put a static
pixel width on the master table they would wrap automatically...but
they don't and the table stretches indefinitely.


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to