Matthias Kahlau wrote:
Hi!

Does anybody know how I can insert one or more spaces (like &bsp;) inside a
JSF page?

Tag
  <f:verbatim> any text </f:verbatim>
will copy the contents directly to the target page.

You can also use:
  <h:outputText escape="false" value="&nbsp;"/>
which will again copy the value directly to the target page.

Regards,

Simon

Reply via email to