我需要绑定Map<Long, String>
到表单中的复选框。
这是我的代码:
<form:form modelAttribute="flowForm" action="${flowExecutionUrl}">
<table style="width: 100%">
<tr>
<td width="30%">Select A Group Please !</td>
</tr>
<td>
<form:checkboxes items="${selectableQuestionarieGroups}" path="id" />
</td>
它工作得很好:
但是,我需要在每个复选框后换行,我该如何实现呢?