use f:convertNumber inside h:link
I want to format a link like currency. Does anyone know a good way of
dealing with such an issue? I'm using Mojarra, JSF 2, PrimeFaces. Usage of
a <f:facet> would be ideal, like in following example:
<h:link outcome="/somePage.xhtml">
<f:facet name="value">
<h:outputText value="#{result.price}">
<f:convertNumber type="currency" currencySymbol=""
minFractionDigits="2" maxFractionDigits="2" locale="de" />
</h:outputText>
</f:facet>
<f:param name="id" value="#{result.id}" />
<f:param name="windowId" value="" />
<f:param name="parentWindowId" value="#{windowId}" />
</h:link>
No comments:
Post a Comment