src/main/webapp/WEB-INF/jspf/version-list.jspf

Mon, 09 Aug 2021 17:09:54 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 09 Aug 2021 17:09:54 +0200
changeset 219
556c03f1dd4e
parent 214
69647ddb57f2
permissions
-rw-r--r--

minor hotfixes for the 0.6 release

     1 <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
     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>

mercurial