By: Garrett
Date: 2006-01-01
Time: 01:28
|
Order by column
The serial example shows a table in row order:
A B C
D E F
G
How would you fill a table in column order?
A D G
B E
C F
|
By: Skrol29
Date: 2006-01-01
Time: 02:32
|
Re: Order by column
Someting like this should work :
<table>
<tr><td>
[bk;block=td;serial]
<table>
<tr><td>[bk_1.letter;block=tr]</tr></td>
<tr><td>[bk_2.letter;block=tr]</tr></td>
<tr><td>[bk_3.letter;block=tr]</tr></td>
</table>
</td></tr>
</table>
|
|
By: Garrett
Date: 2006-01-01
Time: 20:57
|
Re: Order by column
I see, nested tables. A table of single-column tables. And instead of specifying how many columns I want, I specify how many rows I want. Yes, that does work. Thank you!
|
|
Posting in progress.
Please wait...
|