Thu, 13 May 2021 11:28:50 +0200
#109 - add RSS feed
<%@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>