You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Kevin Hale Boyes <kc...@gmail.com> on 2005/11/08 23:25:25 UTC

output text

I find myself doing this a lot:

<h:outputText value="A procesing fee of "/>
<h:outputText value="#{options.feeRate}">
    <f:convertNumber type="percentage" maxFractionDigits="2"/>
</h:outputText>
<h:outputText value=" will be added."/>


I can use <h:outputFormat> when I have simple strings for the parameters
but not for examples like above.

Is there an easier way to output this kind of text?

Thanks,
Kevin.