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

Thu, 08 Oct 2020 18:28:16 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 08 Oct 2020 18:28:16 +0200
changeset 108
6657dad897ea
parent 90
2c74e36752f9
permissions
-rw-r--r--

adds issue ID to the displayed information

<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

<select name="${fieldname}" multiple>
    <c:forEach var="vselitem" items="${selectionList}">
        <option value="${vselitem.id}"
                <c:forEach var="v" items="${data}">
                    <c:if test="${v eq vselitem}">selected</c:if>
                </c:forEach>
        >
            <c:out value="${vselitem.name}" />
        </option>
    </c:forEach>
</select>

mercurial