<f:convertNumber /> 不影响 footerText 值

<f:convertNumber /> doesn't affect the footerText value

我有这个专栏:

<p:column headerText="Percent"
    footerText="#{bean.entityTotal.percent}">
        <h:outputText value="#{entity.percent}">
            <f:convertNumber type="percent" />
        </h:outputText>
</p:column>

百分比掩码 (<f:convertNumber type="percent" />) 对于 <h:outputText> 效果很好,但 footerText 不受影响。 怎么才能不费吹灰之力就给这个footer加上mask呢?

它没有重复,因为我想知道如何在 footerText 中使用掩码,而另一个 post 没有谈论它,而是谈论使用 facets。

您原来的问题是:

How can i put a mask at this footer without making much effort?

根据您对 'much' 努力的定义,答案之一是:

  • 不可能
  • Masking numbers in PrimeFaces footerText column Datatable

考虑到评论中的评论,不幸的是,您不需要的唯一有效答案是:

不可能