You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2005/05/31 20:01:45 UTC

[Myfaces Wiki] Update of "UIOutput" by RigelKentaurus

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by RigelKentaurus:
http://wiki.apache.org/myfaces/UIOutput

New page:
= Some text =

<h:outputText 
  value="#{Message.someText}" />

= A label =

<h:outputLabel for="address">
  <h:outputText id="addressLabel"
    value="#{Message.labelText}" />
</h:outputLabel>

= An external link =
Note: see commandlink in UICommand for JSF action links

<h:outputLink
  value="#{Message.jsfstudiourl}">
  <f:verbatim>JSF Studio</f:verbatim>
</h:outputLink>


= A message with parameters =

<h:outputFormat
 value="#{Message.jsfstudioThankYou}">
  <f:param value="Joe Blow"/>
  <f:param id="productName"
    value="#{Message.productName}"/>
</h:outputFormat>