16 lines
389 B
Plaintext
16 lines
389 B
Plaintext
<%@ include file="../imports.jsp"%>
|
|
|
|
<%@ page import="org.openxava.view.meta.MetaViewAction" %>
|
|
|
|
<%
|
|
String propertyKey = request.getParameter("propertyKey");
|
|
MetaViewAction p = (MetaViewAction) request.getAttribute(propertyKey);
|
|
boolean editable="true".equals(request.getParameter("editable"));
|
|
|
|
if (editable || p.isAlwaysEnabled()) {
|
|
%>
|
|
<xava:action action="<%=p.getAction()%>"/>
|
|
<%
|
|
}
|
|
%>
|