I'm trying to get the 2-digit fraction part only using <f:convertNumber>. E.g. 103.99 must result in .99.
<h:outputText value="#{myBean.totalFare}">
<f:convertNumber pattern="#,##0.00" />
</h:outputText>
This does not work. I also tried to use the patterns ,##.00 and ,##, but failed.
How can I achieve this?