I need tips to get the next value in my table displayTag. Actually I am using display tag to display information on contract
<display:table id="tabCnt" name="listCnt" defaultsort="1" defaultorder = "ascending" pagesize="8" export="true" >
<display:column property="numCnt" title="NumCnt" sortable="true" sortName="denomination" decorator="com.dev.taglib.MyDecorator" />
<display:column property="description" title="Description" />
<display:column property="duree" title="Date end cnt" sortable="true" sortName="duree"/>
</display:table>
Now I want to give a links for each row, which redirect me to the contract. But i want in this redirection to get the property numCnt of the current and the next row and to put it in the URL like shown below ?
http://mysite.com/madirection.do?numCnt="cnt1"&numCnt="cnt2"></a>
Because I have to give the user to click a link on the new page to move to the next contract.
How I can do this ? Can you help me please !
Thanks