<a style="color:red;" οnclick="javascript:viewNoticeInDesktop('${row.pkid}')" title="${row.title }">
<c:set var="title" value="${row.title}"/>
<c:choose>
<c:when test="${fn:length(title) > 30}">
<c:out value="${fn:substring(title, 0, 30)}......" />
</c:when>
<c:otherwise>
<c:out value="${title}" />
</c:otherwise>
</c:choose>
<c:set var="title" value="${row.title}"/>
<c:choose>
<c:when test="${fn:length(title) > 30}">
<c:out value="${fn:substring(title, 0, 30)}......" />
</c:when>
<c:otherwise>
<c:out value="${title}" />
</c:otherwise>
</c:choose>
</a>