Fiz a adição de rowClasses mas é isso mesmo? E onde escrevo a cor?
<h:dataTable id="lista" value="#{epubVersionamentoBean.voEpubVersionamentoList}" var="resultadoPesquisa" rowClasses="tableOddRow, tableEvenRow">
Código completo:
<br />
<h:panelGrid columns="4" rendered="#{not empty epubVersionamentoBean.voEpubVersionamentoList}">
<h:dataTable id="lista" value="#{epubVersionamentoBean.voEpubVersionamentoList}" var="resultadoPesquisa" rowClasses="tableOddRow, tableEvenRow">
<h:column>
<a href="xhtml/upload_epub.xhtml?#{resultadoPesquisa.ISBN_Livro_Impresso}"><img src="imagem/setinha.jpg"></img></a>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Título"></h:outputText>
</f:facet>
#{resultadoPesquisa.titulo}
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Autor"></h:outputText>
</f:facet>
#{resultadoPesquisa.autor}
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Código Produto"></h:outputText>
</f:facet>
#{resultadoPesquisa.codigo_produto}
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="ISBN"></h:outputText>
</f:facet>
#{resultadoPesquisa.ISBN_Livro_Impresso}
</h:column>
</h:dataTable>
</h:panelGrid>