I’m currently using the GridView to show one to many rows – always containing two columns. You can think of it as a name/value pair list. The GridView does a nice job of showing all the data to the user. However, my users have added a new requirement that I believe is beyond what the GridView can (or should) do.
My users want the ability to change the order of the rows one by one. An example would be adding a third column that contains an up and down arrow. If the user clicks the up arrow, the row would be moved into the front of the preceding row. The user could then move the rows up and down and put them in any order they chose. Of course, having slick animation during the moving of the rows would be a huge plus.
I’m guessing I won’t be able to use the GridView for this, but can anyone know where I should start with something like this? We’ve all seen this behavior before, but I’ve never tried to implement it until now.
Thanks!
-Scott