Hi There is a problem with the url handling in display:table and display:column
I tried this statement <display:table .... requestURI="/users.do">. But this is not working because displaytag does not add the context path in front of the urls (if the url begins with a slash). Here's my workaround: <c:url value="/users.do" var="requestURI"/> <display:table ... requestURI="<%= (String)pageContext.getAttribute("requestURI") %>"> There is the same problem in <display:column href="...."/> Another problem is that displaytag adds all request parameter to the requestURI. It's not really a serious problem but the sorting urls are looking a bit awful and long when you entered about 30 input fields in an input mask. All entered data is then part of the sorting url. It would be nice if there is a possibility to override this behaviour with a property. for example like this: <display:setProperty name="include.request.parameters" value="false"/> ------------------------------------------------------- This SF.Net email sponsored by: Parasoft Error proof Web apps, automate testing & more. Download & eval WebKing and get a free book. www.parasoft.com/bulletproofapps1 _______________________________________________ displaytag-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/displaytag-devel