How about allowing users to click on the table headers to sort the various issue tables? One way to do it is described here: http://www.codingforums.com/showthread.php?t=46089
That uses JavaScript (client-side sorting). Of course server-side sorting is possible too, but I think client-side is much more responsive. Any interest in doing this?
I'm specifically interested in the Roadmap and Viewbugs views, but seems like this could be used almost everywhere.
I'm sure there are other Javascript solutions as well; that's just one I found by googling.
-- Gary
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
that is an interesting idea - thanks for the link.
the only downside of client-side filtering is that the changes are not persistent. if you can live with that, then i guess client-side is the way to go.
if however your expecting the order to be persistent, then i'll have to do it server-side.
either way, it's an interesting idea.
thanks!!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How about allowing users to click on the table headers to sort the various issue tables? One way to do it is described here:
http://www.codingforums.com/showthread.php?t=46089
That uses JavaScript (client-side sorting). Of course server-side sorting is possible too, but I think client-side is much more responsive. Any interest in doing this?
I'm specifically interested in the Roadmap and Viewbugs views, but seems like this could be used almost everywhere.
I'm sure there are other Javascript solutions as well; that's just one I found by googling.
-- Gary
that is an interesting idea - thanks for the link.
the only downside of client-side filtering is that the changes are not persistent. if you can live with that, then i guess client-side is the way to go.
if however your expecting the order to be persistent, then i'll have to do it server-side.
either way, it's an interesting idea.
thanks!!