嗨,我使用 rich:dataTable 来显示 MyClass 类型的 List 类型的元素。
<rich:dataTable value="#{myBean.myClassList}"> var="item"
<rich:column>
<h:outputText value="#{item.stdName}"
</rich:column>
<rich:column>
<table class="subtable">
<tr>
<ui:repeat value="#{item.listStr}" var="stdMarks">
<td><h:outputText value="#{stdMarks}"/></td>
</uirepeat>
</tr>
</table>
</rich:column>
通过使用上面的代码,我能够在同一行中显示 StudentName 和标记,但问题是在显示标记后,当我使用 firebug 找到源代码时,会生成另一个空列(如下所述)。
上述代码的源代码如下所示。
<table id="selectForm:servicesDispTable" class="rich-table servicesDispClassTable" width="850">
<tr>
<td id="selectForm:servicesDispTable:1:j_id51" class="rich-table-cell>
<span>Kumar</span>
</td>
<td id="selectForm:servicesDispTable:1:j_id53"><span>89</span></td>
<td id="selectForm:servicesDispTable:1:j_id57"><span>76</span></td>
<td><!-- comment generating extra column here -->
<table class="subtable">
<tr></tr>
</table>
</td>
</tr>
</table>
如何避免生成那个额外的列?任何人都可以帮助我解决这个问题。我曾经使用 ui:repeat 做过什么,我可以使用任何丰富的面孔标签来实现这一点。