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

changeset 115
c27638a50c92
parent 90
2c74e36752f9
child 178
88207b860cba
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/main/webapp/WEB-INF/jspf/version-list.jspf	Fri Oct 09 11:41:35 2020 +0200
     1.3 @@ -0,0 +1,13 @@
     1.4 +<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
     1.5 +
     1.6 +<select name="${fieldname}" multiple>
     1.7 +    <c:forEach var="vselitem" items="${selectionList}">
     1.8 +        <option value="${vselitem.id}"
     1.9 +                <c:forEach var="v" items="${data}">
    1.10 +                    <c:if test="${v eq vselitem}">selected</c:if>
    1.11 +                </c:forEach>
    1.12 +        >
    1.13 +            <c:out value="${vselitem.name}" />
    1.14 +        </option>
    1.15 +    </c:forEach>
    1.16 +</select>

mercurial