Using this locale, using fmt library on jsp to format the view.
add to jsp the library:
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<fmt:setLocale value="eu_ES"/>
<fmt:formatNumber value="1.1234" maxFractionDigits="2"/>
output: 1.1234
<fmt:setLocale value="es_ES"/>
<fmt:formatNumber value="1.1234" maxFractionDigits="2"/>
output: 1.12
using this locale(eu, or eu_ES) maxFractionDigits doesn't work.
Also I believe that first day of week is Monday in Basque(not Sunday).
Many thanks for this extension Good work!
Original issue reported on code.google.com by josep.mo...@gmail.com on 22 May 2012 at 10:32
Original issue reported on code.google.com by
josep.mo...@gmail.com
on 22 May 2012 at 10:32