Files
Babydatenbank/web/xava/editors/moneyEditor.jsp
Socrates 9ed0f2a056 test
2020-05-26 10:29:34 +02:00

20 lines
459 B
Plaintext

<%@page import="java.util.Currency"%>
<%@page import="java.util.Locale"%>
<%
String symbol = null;
try {
symbol = Currency.getInstance(Locale.getDefault()).getSymbol();
}
catch (Exception ex) { // Because Locale.getDefault() may not contain the country
symbol = "?";
}
%>
<jsp:useBean id="style" class="org.openxava.web.style.Style" scope="request"/>
<span class="<%=style.getMoney()%>">
<b><%=symbol%></b>
<jsp:include page="textEditor.jsp"/>
</span>