Datatable column rows
Hi,
In my application I need to display a list of images from a database table. Now if I do as:
<h:datatable value="#{myBean.x}" var="item">
<h:column>
<h:graphicimage url="{#item.pic}"/>
</h:column>
I end with a narrow one column table like.
x
x
x
x
x
while I want to get
x x x x
x x x x
x x x x
How can I achieve this?
thanks

