Re: simple page render

2013-02-18 Thread Ivan Khalopik
You can create your own component for rendering plain html files. I had something similar to your issue - source code rendering. https://github.com/sody/heroku-samples/blob/master/src/main/java/com/example/ui/components/Source.java usage: t:source content=classpath:sources/Source1.java/ Or you

Re: simple page render

2013-02-18 Thread Bob Harner
I think you'll actually find Ivan's second suggestion more productive. Each page (tml and empty java class) should take you no more than 60 seconds to create by copying and pasting, and then you'll have a good starting point for fleshing out real functionality later. On Mon, Feb 18, 2013 at 3:00

RE: simple page render

2013-02-18 Thread Ken in Nashua
Thanks guys, That was terrific.

simple page render

2013-02-17 Thread Ken in Nashua
Folks, I am prototyping and want to fill in some navigation points with plain HTML within a tml... just for temporary sake. I will eventually get to these navigation points and implement some real tapestry. But I have some html files... that I want to render inside some tab control So I am