Hi,
I can get the list count using <c:forEach> as follows,
<c:forEach items="${mylist}" var="km" varStatus="cnt">
List Count = ${cnt.count}
</c:forEach>
Is it possible that i can get this list count directly in the <c:if>
test condition without iterating thru <c:forEach>
something like <c:if test="${mylist.count gt 0}"> No data found.. </c:if>
Appreciate your response on this.
Thanks & Regards,
Atul Samnerkar