Negative monetary values, when using the native JSF converter, <f:convertNumber type="currency"/>
, are left with the character ' -
', before the R $.
For example: -R$ 56.134.726,99
.xhtml
<p:column>
<h:outputText value="#{entidade.valorMonetário}">
<f:convertNumber type="currency"/>
</h:outputText>
</p:column>
Is there any way I can solve this problem without having to create my own Converter?