This commit is contained in:
Socrates
2020-05-26 10:29:34 +02:00
commit 9ed0f2a056
1162 changed files with 162062 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<%
boolean editable="true".equals(request.getParameter("editable"));
if (editable) {
String cssClass = "ox-ckeditor";
String ckeConfig = request.getParameter("config");
if (ckeConfig != null) cssClass = "ox-" + ckeConfig + "-ckeditor";
%>
<jsp:include page="textAreaEditor.jsp">
<jsp:param name="cssClass" value="<%=cssClass%>" />
</jsp:include>
<%
}
else {
String propertyKey = request.getParameter("propertyKey");
String fvalue = (String) request.getAttribute(propertyKey + ".fvalue");
%>
<input type="hidden" name="<%=propertyKey%>" tabindex="1" value='<%=org.openxava.util.Strings.change(fvalue, "'", "&#39;")%>'>
<%=fvalue%>
<%
}
%>