Thank you for your response Howard, this is my tml that throws the exception
<body>
<t:form t:id="formBusqueda" t:zone="zonaResumen">
<table>
<tr>
<td>
<t:zone t:id="zonaResumen" update="show">
<div id="zonaGrid" align="center">
<t:grid source="gastos" t:row="resumenCosto"
align="left"
t:rowClass="prop:evenodd.next"
t:add="encuestador,gasto,verDetalle"
t:exclude="gastoTotal"
width="100%"
rowsPerPage="5"
inplace="true">
</t:grid>
</div>
<p/>
<t:if test="gastos">
<table width="50%" align="center">
<tr>
<td>
<div align="center">
Reporte excel
</div>
</td>
</tr>
</table>
</t:if>
</t:zone>
</td>
</tr>
<tr>
<td>
<t:zone t:id="zonaDetalle" update="show">
<t:grid t:id="gridDetalle"
source="transacciones" t:row="transaccion"
align="center"
t:rowClass="prop:evenodd.next"
rowsPerPage="10"
t:add="consumo,celular,costoTransaccion,encuestador"
t:exclude="kbConsumidosRedondeados,precioPesos,mensajeError,success,bytesConsumidosStr"
t:reorder="encuestador,celular,fechaTransaccion,consumo,tipo,costoTransaccion"
width="100%"
inplace="true">
</t:grid>
</t:zone>
</td>
</tr>
</table>
</t:form>
</body>
FIX
-------------------------------------------------------------------------------------------------
But the problem is fixed when I modify the tml to:
<body>
<t:form t:id="formBusqueda" t:zone="zonaResumen">
</t:form>
<table>
<tr>
<td>
<t:zone t:id="zonaResumen" update="show">
<div id="zonaGrid" align="center">
<t:grid source="gastos" t:row="resumenCosto"
align="left"
t:rowClass="prop:evenodd.next"
t:add="encuestador,gasto,verDetalle"
t:exclude="gastoTotal"
width="100%"
rowsPerPage="5"
inplace="true">
</t:grid>
</div>
<p/>
<t:if test="gastos">
<table width="50%" align="center">
<tr>
<td>
<div align="center">
Reporte excel
</div>
</td>
</tr>
</table>
</t:if>
</t:zone>
</td>
</tr>
<tr>
<td>
<t:zone t:id="zonaDetalle" update="show">
<t:grid t:id="gridDetalle" source="transacciones"
t:row="transaccion"
align="center"
t:rowClass="prop:evenodd.next"
rowsPerPage="10"
t:add="consumo,celular,costoTransaccion,encuestador"
t:exclude="kbConsumidosRedondeados,precioPesos,mensajeError,success,bytesConsumidosStr"
t:reorder="encuestador,celular,fechaTransaccion,consumo,tipo,costoTransaccion"
width="100%"
inplace="true">
</t:grid>
</t:zone>
</td>
</tr>
</table>
</body>
Anyone knows why this behaviour ?
Thanks in advance
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-2-The-rendered-content-did-not-include-any-elements-that-allow-for-the-positioning-of-t-tp3258993p3259650.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
