在struts2应用程序中的列表上使用它时,Fieldset属性不起作用

时间:2012-11-06 13:34:58

标签: html jsp struts2

你好看看我在jsp中的代码。

    <s:iterator value="answeredquestions" status="status" var="question">
  <fieldset>
    <legend><s:property value="Question"/></legend>
    <s:property value="QuestionNumber"/>    
    <table><s:radio label="Answer" name="answeredquestions[%{#status.index}].UserAnswer" list="AnswersOptions" /></table>
   </fieldset>
   </s:iterator>
      <

列表似乎工作正常 但是在第一个列表项中,单选按钮不会进入字段集。

1 个答案:

答案 0 :(得分:1)

请参阅有关主题http://struts.apache.org/2.x/docs/themes-and-templates.html的文档。默认情况下,Struts2使用xhtml主题。在这个主题中,元素被放在表格单元格中。您可以通过在标记中指定theme="simple"属性来更改它。注意:如果您使用simple主题,则会出现字段错误。