1
I've got a bunch of checkboxes I would like to layout in a two or three column form. I am trying a:
<{foreach item=element from=$layerform.elements}>
<tr>
<td class="<{cycle values="even,odd"}>"><{$element.body}></td>
</tr>
<{/foreach}>
type of affair, but would like to layout in more than a single column. How is this done??? How can I do something like:
<{foreach item=element from=$layerform.elements}>
<tr>
<td class="<{cycle values="even,odd"}>"><{$element.body}></td>
<{next}>
<td class="<{cycle values="even,odd"}>"><{$element.body}></td>
</tr>
<{/foreach}>
So I can get "every other" element to layout in a second or third column? (I know there is no "next" )
Thanks
Doug P