我正在尝试使用复选框在下拉列表中选择多个值,我很困惑如何在不更改TLD文件的情况下获得。即选择的每个选项都有复选框
我正在工作的示例代码
<form:select path="brandIds" id="brandDropdownSelectId" tabindex="31" multiple="true" size="4" >
<option value="0">Select Brand</option>
<form:options items="${brandList}" itemValue="brandId"
itemLabel="brandName" checkbox="true"/>
</form:select>