如何在Struts2中垂直对齐单选按钮

时间:2012-08-01 16:23:05

标签: struts2

  

可能重复:
  How to make Struts radio tag create a vertical list of radio buttons

如何在Struts2中垂直对齐单选按钮,因为默认情况下生成的单选按钮水平对齐。 我正在列表中进行迭代。

<s:radio theme="simple" list="masterList" name="selectedDatabase" onclick="gotoAction(this)"/>

1 个答案:

答案 0 :(得分:1)

<s:iterator value="masterList"> 
  <s:radio theme="simple" name="selectedDatabase" list="#{id:name}"/><br>
</s:iterator>

其中id将是列表的属性,您要提交,name将成为单选按钮的标签。