I have the following tag in a table row in my jsf page (jspx):
<af:image source="/resources/img/up.png" id="img1" rendered="#{row['percentage'] ge 0}"/>
From the error I can tell that row['percentage'] is equal to "0,00" which causes parsing errors for JSF
I tried changing the locale by the following:
<f:view locale="#{pageFlowScope.backing_bean.locale}">Where in my bean I have:
private Locale locale = new Locale("fr");I tried to use:
FacesContext.getCurrentInstance().getViewRoot().setLocale(locale);
But nothing works!