Hi all, question - is it possible to somehow manage table row items or even whole table row inside dataTable tag:
what I want to get in result:
<h:dataTable var="raw">
<h:column>
<c:choose>
<c:when test="condition1">
1
</c:when>
<c:otherwise>
2
</c:otherwise>
</c:choose>
<h:column>
</h:dataTable>
I tried this, but it doesnt work and I suppose why. So is it possible
somehow to work with dataTable items in any way?
Thanks,
Anton

