I need to print only the contents of a h:datatable
. How can I do this?
views:
35answers:
2
+1
A:
A somewhat simpler example, without the caption bug ;-)
<h:dataTable value="#{MyBean.myCollection}" var="item">
<h:column>
<h:outputText value="#{item}"></h:outputText>
</h:column>
</h:dataTable>
EJP
2010-08-21 06:00:03