test
This commit is contained in:
13
web/naviox/editors/organizationUrlEditor.jsp
Normal file
13
web/naviox/editors/organizationUrlEditor.jsp
Normal file
@@ -0,0 +1,13 @@
|
||||
<%@ page import="org.openxava.util.Is" %>
|
||||
|
||||
<%
|
||||
String propertyKey = request.getParameter("propertyKey");
|
||||
String fvalue = (String) request.getAttribute(propertyKey + ".fvalue");
|
||||
if (!Is.emptyString(fvalue)) {
|
||||
String url = request.getContextPath() + fvalue;
|
||||
%>
|
||||
<a href="<%=url%>"><%=url%></a>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<input type="hidden" name="<%=propertyKey%>" value="<%=fvalue%>">
|
||||
Reference in New Issue
Block a user