我試圖強制在輸入內使用逗號而不是點。Howto強制在primefaces inputText中使用逗號而不是點?
<p:inputText id="interes" value="#{myBean.interes}" label="interes" required="true" locale="es">
<f:convertNumber pattern="##,##" type="currency" currencySymbol="" locale="es" />
</p:inputText>
現在,當我寫了一些這樣的:5.6爲56
但是我希望其他的行爲,它會自動設置:
- 將其轉換爲5,6(逗號,而不是點)
- 顯示驗證錯誤
是否有可能只白衣primefaces屬性或者我應該使用JavaScript?
在此先感謝。