Can someone point to me or explain if this is true, you should not use simple simple HTML tags in JSF or JSF libraries like RichFaces?
We use JSF 1.2, RichFaces 3.3.3 and Facelets on the JBOSS server.
Someone told me that we should use only <rich:>either <f:>or <a4j:>and the components that they offer. The reason is that the JSF component tree will break and you may experience unwanted behavior. Or lose the structure of the JSF tree at some point and its related functions.
I tried to use a simple tag <h1>and they told him not to use it and instead use it <a4j:outputPanel>(which displays as <div>) and style it as a headline.
I find it hard to believe that.
source
share