Pleease find the snippet of code below used to dispaly the whole list of comments.
<c:if test="${null != blogessay.comments && not empty blogessay.comments}" >
<h1 class="commentHeader">COMME
<!-- begin comment (repeat as necessary) -->
<c:forEach var="comment" items="${blogessay.comment
<fmt:parseDate var="dateObj" pattern="yyyy-MM-dd HH:mm:ss.S" value="${comment.lastUpdat
<!-- begin comment (repeat as necessary) -->
<div class="commentDetails">
<div class="commenter">
<img src="<c:out value="${comment.avatar}" />" alt="" />
<div class="label"><c:out value="${comment.userName}
</div>
<div class="essayComment">
<span class="bold">POSTED ON:</span> <fmt:formatDate pattern="MMM dd, yyyy hh:mm aaa" value="${dateObj}" /><br />
<div class="commentActions">
<a class="flagit" href="#" onclick='javascript:confir
</div>
</div>
<div class="commentText">
<p><c:out value="${comment.commentTe
</div>
</div>
<div class="clear"></div>
<c:if test="${!commentCounter.la
</c:if>
<!-- end comment (repeat as necessary) -->
</c:forEach>
</c:if>
<!-- ***** END comment threads ***** -->
Main Topics
Browse All Topics





by: rrz@871311Posted on 2009-04-14 at 09:39:31ID: 24140098
Please show us your JSTL code. Maybe we can work from there.