如何在页面方向而不是行方向上呈现<form:checkboxes>?</form:checkboxes>

时间:2012-09-17 02:14:28

标签: java jsp spring-mvc spring-webflow jspx

我需要将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>

工作得很好:

enter image description here

但是,我需要在每个复选框后面换行,我该如何实现?

0 个答案:

没有答案