比如有一个集合需要显示,通常用iterator标签可以实现这个列表的显示
<logic:iterate id="org" name="orgs" scope="request" type="com.xtgl.Organization">
<tr>
  <td width="45%" height="12">
    <input type="checkbox" name="org" value='<bean:write name="org" property="id"/>
  </td>
  <td width="55%" height="12"><bean:write name="org" property="name"/>&nbsp;</td>
</tr>
</logic:iterate>
这种显示会把数据按一行只有一列显示
我想一行显示2列,有没有办法