I do not understand what you are trying to achieve > <t:output value="</tr><tr>"/> in a template is identically to <tr></tr> right? There is no need to wrap html elements inside outputraw within a template. Use output raw to stream html from your page class, for example assume you have a preformated product description Incl bold, underline, whatever as a string object than:
In java page public String getProductDescription() { return "<b>header</b><br/>text text text..."; } In your tml: <t:outputraw value="${productDescription}"/> Jens Von meinem iPad gesendet Am 29.09.2012 um 07:00 schrieb Ken in Nashua <kcola...@live.com>: > > Folks, > > If the output and outputraw components cannot contain a left angel bracket < > > or other angle brackets > > ex. <t:output value="</tr><tr>"/> <t:outputraw value="</tr><tr>"/> > > Then I am left with doing this... > > <t:outputraw value="</tr><tr>"/> > > But if yeilds the following exception > > java.lang.RuntimeExceptionError parsing property expression '</tr><tr>': > Unable to parse input at character position 1. > Does anyone know how to output table tags in my template ? > > Thanks > > kcola...@live.com > > > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org