Folks, Ok I implement an if component. And upon condition I render some markup...
ESCAPE IT...? CALL JAVA METHOD...? SPECIFY DIRECT MARKUP ? i tried each... <t:If test="atNewRow"> </tr><tr> <!-- yeilds exception below --> </t:If> or <t:If test="atNewRow"> <\\/tr><tr> <!-- yeilds bogus markup </tr><tr> --> </t:If> <t:If test="atNewRow"> ${newTableRow} <!-- yeilds nother exception--> </t:If> If I could have performed this already I would have. Are there limitations in the framework that are preventing this simple fundamental operation ? If anyone has a snap dab code snippet solution to this I would love to see it. Thanks in advance Ken ---------------- cut here ---------------- org.apache.tapestry5.ioc.internal.OperationExceptionFailure parsing template classpath:org/tynamo/examples/hibernatesecurity/components/Gallery.tml: The element type "t:If" must be terminated by the matching end-tag "</t:If>".locationclasspath:org/tynamo/examples/hibernatesecurity/components/Gallery.tml, line 105100-->101 102 </t:Loop> <!-- end for loop object-->103 104 <t:If test="atNewRow"> 105 </tr><tr>106 </t:If>