I have a table in HTML which I am generating from XML/XSL and I want it to suppress repeating values. However, I also want to sort it on the fly by clicking the titles.
Without a round trip to the server I need to suppress different values after each sort. Is there a good javascript/css solution.
For example
Data
Date Person Score
May Jeff 1
May Joel 2
June Alex 1
Initial Display
Note lack of second May
Date Person Score
May Jeff 1
Joel 2
June Alex 1
Display After sorting by Score
Note lack of second 1
Date Person Score
May Joel 2
June Alex 1
May Jeff