Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=5140298
By: ed_j_webb

You are right. The only place you can tell DisplayTag that the column should
be sortable is in the <display:column> tag. You will need to find a way to store
the names of the keys in your maps and iterate through them to create a series
of <display:column> tags:

<display:table name="SearchResult" id= "result" [snip] > 
    <c:forEach items="${mykeys}" var="key">
        <display:column property="${key}" sortable="true"/>
    </c:forEach>
</display:table> 

Ed!

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249317

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to