I want to apply if condition on data retrieved through list onto JSP page using DisplayTag
Suppose We have a list object 'Alist'
. This object is a part of DisplayTag table. Table has pagination enabled.
<display:table class="displayTable" cellpadding="0" cellspacing="0" id="Alist" name="Alist" pagesize="20" requestURI="${pageContext.request.contextPath}/Action.do?csrf=<%=csrfPage%>">
<display:setProperty name="paging.banner.placement" value="both" />
Now in this we have display tags like below :
<display:column class="normal_text" property="NUMBER" title="Number" />
Now I would like to change value of property NUMBER
based on various conditions. I am new to DisplayTag. Please guide me to solve this issue.