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

Thu, 13 May 2021 11:33:15 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 13 May 2021 11:33:15 +0200
changeset 196
74682d8dce56
parent 178
88207b860cba
child 214
69647ddb57f2
permissions
-rw-r--r--

removes whitespaces from description

<%@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:if test="${vid eq vselitem.id}">selected</c:if>
        >
            <c:out value="${vselitem.name}" />
        </option>
    </c:forEach>
</select>

mercurial