Restored code that was inadvertently removed from entityBasic.jsp. In edit mode, empty property values were erroneously not appearing with labels and plus links.

This commit is contained in:
rjy7 2010-03-23 18:33:57 +00:00
parent c162cf675e
commit 2eee890143

View file

@ -267,12 +267,23 @@ RY Description not working - FIX
<%-- Properties --%> <%-- Properties --%>
<c:choose>
<c:when test="${showEdits}">
<c:import url="${entityMergedPropsListJsp}"> <c:import url="${entityMergedPropsListJsp}">
<%-- <c:param name="mode" value="edit"/> --%> <c:param name="mode" value="edit"/>
<c:param name="grouped" value="false"/> <c:param name="grouped" value="false"/>
<%-- unless a value is provided, properties not assigned to a group will not have a tab or appear on the page --%> <%-- unless a value is provided, properties not assigned to a group will not have a tab or appear on the page --%>
<c:param name="unassignedPropsGroupName" value=""/> <c:param name="unassignedPropsGroupName" value=""/>
</c:import> </c:import>
</c:when>
<c:otherwise>
<c:import url="${entityMergedPropsListJsp}">
<c:param name="grouped" value="false"/>
<%-- unless a value is provided, properties not assigned to a group will not have a tab or appear on the page --%>
<c:param name="unassignedPropsGroupName" value=""/>
</c:import>
</c:otherwise>
</c:choose>
<p:process> <p:process>
<%-- Citation, if no thumbnail --%> <%-- Citation, if no thumbnail --%>