I think you'll just want to use the OutputRaw component there. http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/corelib/components/OutputRaw.html
Bob Harner On Jan 1, 2012 9:40 AM, "Muhammad Gelbana" <m.gelb...@gmail.com> wrote: > Hi everyone, > > First thanks to whoever participated to develop the latest version :) > > Now to the problem. I have a table with more than one column. A loop > component loops over a list of objects to fill that table with rows. > One of the columns should be filled with a string value obtained from that > object. The string value is expected to have "<br />" in it to produce new > lines in the html page when rendered but after upgrading to 5.3.1, the "<br > />" is encoded to " <br /> " ! > > <table> > <tr t:type="loop" source="0 .. cmdResponsesSize" value="cmdResponsesIndex" > bgcolor="${responseRowColor}"> > ........... > ........... > <td style="text-align: left;">${pingResponseSummary.output}</td> > *<<<<<<<<<<br > /> encoded "<br />"* > ........... > ........... > </tr> > </table> > > I bet this is explained somewhere in the docs but I can't find a page > discussing similar issues or a symbol to disable the functionality of > encoding html entities. > > Thanks in advance :) > > -- > *Regards,* > *Muhammad Gelbana > Java Developer* >