Hi,
I’m trying to use the combo box in a jsp. When i load the JSP it shows the combo box and all the options but does not use the autocomplete. I’m using JSTL to get the elements from a linkedHashMap. Here’s the code:
<c:forEach items="${vendors}" var=“vendor”>
<option value="<c:out value="${vendor.key}" />">
<c:out value="${vendor.key}" />
</c:forEach>
Thanks!