[ic] Layout with Interchange

Paul Jordan interchange-users@interchange.redhat.com
Tue Mar 19 19:52:00 2002


> > Do you know something to organise better my Table, or do you
> know if i can
> > import a tablle already made and just put TAGS IC to have a
> loop (verticaly
> > and horizontaly).
>

Look at [item-alternate]. (Simplified) You can build a table, minus the last
</tr> and go:

<table>
	<tr>
	[search-list]
		<td>
		   <table>
			<tr>
      		    <td> Results Content Here
 			    </td>
			</tr>
		   </table>
            </td>

[item-alternate 3]</tr><tr>[else][/else][/item-alternate]

      [/search-list]

    [on_match]
     </tr>
    [/on_match]

</table>

## It says that on the third time around insert a </tr><tr>, thus starting a
new row for your table. You can use any number, not just  3.

At least it works for me :)

Paul