230:95b419e054fa | 231:dcb1d5a7ea3a |
---|---|
1 <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> | |
2 | |
3 <select id="issue-${fieldname}" name="${fieldname}" multiple> | |
4 <c:forEach var="vselitem" items="${selectionList}"> | |
5 <option value="${vselitem.id}" | |
6 <c:forEach var="v" items="${data}"> | |
7 <c:if test="${v eq vselitem}">selected</c:if> | |
8 </c:forEach> | |
9 <c:if test="${vid eq vselitem.id}">selected</c:if> | |
10 > | |
11 <c:out value="${vselitem.name}" /> | |
12 </option> | |
13 </c:forEach> | |
14 </select> |