I know there are other fish to fry... but its been years now. https://issues.apache.org/jira/browse/TAP5-1187?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel
https://issues.apache.org/jira/browse/TAP5-1757 http://apache-tapestry-mailing-list-archives.1045711.n5.nabble.com/T5-3-Volatile-grid-inside-form-td5017357.html http://www.mail-archive.com/users@tapestry.apache.org/msg53115.html I have embedded about half a dozen DIV's in this template without any relief. Any suggestions are appreciated. <t:layout title="literal:Leaders Query" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd" xmlns:p="tapestry:parameter" xmlns:j="tapestry-library:jquery"> <t:block id="leadersQueryMainBlock"> <div class="t-invisible"/> <t:form t:id="criteriaForm" id="criteriaForm" clientValidation="false" > <t:errors/> <div class="t-invisible"/> <fieldset class="k-sub-group" style="fieldset.k-sub-group { border:1px; background: ${adminLayout.dividerBackGroundColor}; }"> <legend> Selection Criteria </legend> <ul class="k-check"> <table width="100%" border="0" > <tr> <th>Year</th> <th>League</th> <th>Season</th> </tr> <tr> <td> <select t:type="Select" t:id="yearSelect" t:clientId="yearSelect" id="yearSelect" t:model="prop:yearSelectModel" t:encoder="prop:yearValueEncoder" t:value="prop:year" blankOption="never" /> </td> <td> <select t:type="Select" t:id="leagueSelect" t:clientId="leagueSelect" id="leagueSelect" t:model="prop:leagueSelectModel" t:encoder="prop:leagueValueEncoder" t:value="prop:league" blankOption="never" /> </td> <td> <select t:type="Select" t:id="seasonSelect" t:clientId="seasonSelect" id="seasonSelect" t:model="prop:seasonSelectModel" t:encoder="prop:seasonValueEncoder" t:value="prop:season" blankOption="never" /> </td> <td style="width:20%"> <t:submit t:id="go" event="go" class="button" value="GO" align="right"/> </td> </tr> </table> </ul> </fieldset> <hr/> <B>Players</B> <t:If test="source"> <div class="t-invisible"/> <t:grid t:id="grid" source="source" row="bean" inPlace="true" add="__id__" reorder="__id__" t:mixins="tynamo/BeanModelAdvisor" > <p:__id__header> </p:__id__header> <p:__id__cell> <t:pagelink t:page="Show" context="showPageContext"><t:tynamo.identifier object="bean"/></t:pagelink> </p:__id__cell> </t:grid> <div class="t-invisible"/> <p:else> <B><CENTER><H3>No objects to render</H3></CENTER></B> </p:else> </t:If> <div class="t-invisible"/> </t:form> </t:block> <table width="100%" border="1" > <tr> <td> <t:delegate to="block:leadersQueryMainBlock" /> </td> </tr> </table> </t:layout>