Re: AW: How to use the HtmlTag component when programmatically building the UI?

2006-02-02 Thread Volker Weber
Hi Matthias, i don't know anything about the Tomahawk HtmlTag component, but you can allways create a verbatim component programmatically. This is just a UIOutput with escape=false. With this you can render anything you want. Regards, Volker Matthias Kahlau wrote: Hi! Is there nobody

AW: How to use the HtmlTag component when programmatically building the UI?

2006-02-01 Thread Matthias Kahlau
Hi! Is there nobody else who had the requirement to programmatically render HTML elements like H1, H2 etc.? This is an important requirement when creating Web pages which have to follow accessibility guidelines... Regards, Matthias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED]

Re: AW: How to use the HtmlTag component when programmatically building the UI?

2006-02-01 Thread Laurie Harper
If you're building the view programmatically, why can't you just use ResponseWriter directly? writer.startElement(h1); writer.writeText(header 1); writer.startElement(h2); writer.writeText(nested header 2); writer.endElement(h2); writer.endElement(h1); L. Matthias Kahlau wrote: