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

Sun, 01 Aug 2021 18:14:36 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 01 Aug 2021 18:14:36 +0200
changeset 204
54c612612c69
parent 178
88207b860cba
child 214
69647ddb57f2
permissions
-rw-r--r--

#121 adds about page

     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