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

Mon, 04 Jan 2021 17:30:10 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 04 Jan 2021 17:30:10 +0100
changeset 178
88207b860cba
parent 115
c27638a50c92
child 214
69647ddb57f2
permissions
-rw-r--r--

automatically select version/component when creating new issues under active filters

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