Thanks Rob... code ran as-is... auto-paging layout looks sweet

I hope to finish this guy up and publish for public consumption by mid week or 
sooner... I just need to QA the action auto-paging links.

Thanks... appreciate the help

TML
                <t:Loop id="foreachitem" source="collection" 
value="currentObject" index="index">
                    <t:If test="okToRenderItem">
                        
                        <t:if test="hasColumnsAndItems">
                            <t:if test="atRowEnd">
                                  <t:outputraw value="trTags"/>
                            </t:if>
                        </t:if>

JAVA
    public boolean isHasColumnsAndItems() {
        return Math.min(tableColumns, itemsPerPage) > 0;
    }    
    
    public boolean isAtRowEnd() {
        return ((index - cursor) % Math.min(tableColumns, itemsPerPage)) == 0;
    }
    
    public String  getTrTags() { 
        return "<tr></tr>";
    }
                                                                                
  

Reply via email to