<select name="projecttype" class="selt-box" onfocus="window.dropdown_menu_hack(this)">
<c:forEach items="${lookupdetails}" var="lookupdetails" >
<c:if test="${not empty lookupdetails.lookupName && lookupdetails.lookupId==16}"> <option value="${lookupdetails.lookupdetailId}">${lookupdetails.lookupName}</option>
</c:if>
</c:forEach>
</select>
上面的代码是一个多选框。请打电话给我如何使所选值突出显示..编辑时..
我使用了来自控制器的value = ${xx}
,它是选定的值..它不起作用..pl help
答案 0 :(得分:0)
这可以使用spring的形式存档:select tag。请查看可以涵盖您的方案的代码段。
<form:select path="lookupdetails" multiple="true">
<form:options items="${lookupdetails}" itemLabel="lookupName" itemValue="lookupId" />
</form:select>
Spring将为lookupDetails集中的对象生成预先选择的html。
此致 Hemanth