You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Joel Trunick <Jo...@SmartPrice.com> on 2003/06/05 21:41:17 UTC

Table "on its side"

The contrib:Table seems to support only tables where the columns have the
same value. I want to have my rows be the "columns" and have a flexible
number of columns. That is, per row, I have the same value across. 

Instead of:

Column1   Column2   Column3
z1        y1        x1
z2        y2        x2
z3        y3        x3


I want:

Column1   z1    z2   z3   zn...
Column2   y1    y2   y3   yn...
Column3   x1    x2   x3   xn...

Is there a way to coax the "ITableModel" into such a format? Or, some other
simplified way to pull this off?

Joel