When using c:if test="${empty command.propertyList}" and c:if test="${not empty command.propertyList
- by Arthur Ronald F D Garcia
Hi, I use the following markup to generate a collection of elements
<c:if test="${empty command.materialList}">
<span>It has been evaluated</span>
more code...
</c:if>
<c:if test="${not empty command.materialList}">
<span>It has been evaluated</span>
more code...
</c:if>
But both conditional statements are evaluated. Am i missing some info ???