Masking numbers in PrimeFaces footerText column Datatable
问题 I want to display a masked number like this: 1.234.567,89. The following code already do this: <p:column> <h:outputText value="#{item.value}"> <f:convertNumber locale="pt_BR"/> </h:outputText> </p:column> How can I applly the same mask for a Primefaces datatable in a footerText column as the following code excerpt? <p:columnGroup type="footer"> <p:row> <p:column colspan="8" footerText="Grand Total:" /> <p:column footerText="#{upbController.totalLosses}" /> </p:row> </p:columnGroup> Thanks in