Hello,
I (more or less) copied the following code from the seam-icesfaces example.
<div id="adminList">
<h:outputText value="No Accounts Found" rendered="#{accounts != null and accounts.rowCount==0}" />
<ice:dataTable id="accounts" value="#{accounts}" var="a" rendered="#{accounts.rowCount>0}">
<h:column>
<f:facet name="header">Username</f:facet>
<ice:outputText value="#{a.uid}" onmouseovereffect="#{highlight}" />
</h:column>
<h:column>
<f:facet name="header">Password</f:facet>
<ice:outputText value="#{a.password}" onmouseovereffect="#{highlight}" />
</h:column>
<h:column>
<f:facet name="header">Action</f:facet>
<s:link value="View Account" action="#{accountFacade.accountSelection(a)}"/>
</h:column>
</ice:dataTable>
</div>