Migrated Query 3 - Using Parameterized query
This commit is contained in:
@@ -79,11 +79,9 @@
|
||||
<option value="-1" selected >SELECT PORTFOLIO</option>
|
||||
<c:choose>
|
||||
<c:when test="${not empty model}">
|
||||
<c:forEach items="${model.options}" var="port">
|
||||
<c:if test="${fn:startsWith(port.key, 'portfolio.')}">
|
||||
<option value="${fn:substringAfter(port.key, 'portfolio.')}"><c:out value="${port.value}" /></option>
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
<c:forEach items="${model.options['portfolio.']}" var="port">
|
||||
<option value="${port.value}"><c:out value="${port.label}" /></option>
|
||||
</c:forEach>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
|
||||
Reference in New Issue
Block a user