Pure Html in JSF

Hello everyone I have a question.Can I use in normal way HTML and JSF? Because if I nest the JSF components in HTML code starnge things happens.RegardsTom
[182 byte] By [x_oko_xa] at [2007-10-3 0:34:51]
# 1
Try this: http://www.jsftutorials.net/htmLib/
amitteva at 2007-7-14 17:28:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

I am guessing the odd behavior you mention is things render in weird order. Its because of the order that things are parsed in a page, a well known issue with JSF 1.1 (and apparently fixed in 1.2). Basically if you want to incorporate html code into a JSF page, you need to wrap it in "verbatim" tags. Or that library mentioned above, which appears to just be jsf tags that render normal html, although I have never used it.

hergioa at 2007-7-14 17:28:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...