This advanced component is a custom <f:verbatim/>
tag that enables you to add HTML elements
to certain components and have
the HTML elements act like components . Wrapping an HTML tag
in an <f:verbatim/>
tag makes it behave
as though it were a JavaServer Faces component, solving some
problems with pages that have mixtures of JavaServer Faces components
and HTML elements.
If you put an HTML element or plain text inside a JavaServer Faces component like Table or Grid Panel and you do not use the Faces Verbatim component, the following happens:
<f:verbatim>
tag. For example, you cannot start a <table>
in an <f:verbatim>
tag but put the ending
</table>
tag after the ending </f:verbatim>
tag. <f:verbatim>
component cannot have
other JavaServer Faces components embedded inside it.