Strategy for Sorting in UI

  • Thread starter Thread starter Guadala Harry
  • Start date Start date
G

Guadala Harry

I need to present users with a list - and then let them sort it in any
arbitrary order they like. Each item to be sorted is a short string of
text - there can be up to 50 items to sort. After the users are finished
sorting, the sorted list gets sent back to the server. I'd appreciate any
suggestions for how to accomplish this on the client (minimizing round
trips) - including suggestions for specific UI controls.

Thanks in advance.
 
What are you sorting? Is it numerical info? Strings? Date/Time???

Your sort is going to be based around your data. There doesn't exist a
"master" control to sort since sorting is dependent upon the data you have.
 
Back
Top