Hello,
I am desperately trying to obtain the proper links for server side paging
and sorting with display tag 1.1.
In one of my jsp's I have:
<display:table uid="pending" name="transactionsInProcessStatus"
cellpadding="0" requestURI="" defaultsort="3" sort="list"
defaultorder="descending" pagesize="<%=pageSize%>" class="table"
export="false"
decorator="es.isigma.firmaqui.webapp.taglib.TransactStatusDecorator">
<display:column property="signatureDescription"
sortProperty="description" escapeXml="true"
sortable="true" titleKey="userDocument.title" url="/doc/view.html"
paramId="id" paramProperty="id" class="column_title" />
</display:table>
My PaginatedList implementation is similar to this one:
http://code.google.com/p/pagingappfuse/source/browse/trunk/src/main/java/com/pobox/paging/webapp/helper/PaginatedListImpl.java
The link generated by displaytag for sorting is:
http://localhost:8080/doc/list.html?sort=description&dir=asc
The problem is, Ineed the "usual" encoded link (because I have two tables in
the same jsp page). In the userList.jsp, for instance, the link generated by
displaytag for sorting is:
http://localhost:8080/admin/users.html?d-149542-s=0&d-149542-o=1&d-149542-p=1
Regards,
Jose