Hi all
We're looking to move to ASP.NET from ASP and migrate our web-app over. However, we've come up against a major stumbling block already - grouping & sorting.
Whilst with VS-2005 can sort, it can't group therefore requiring code modification or the purchase of a component.
Essentially, what we require is the ability to group, the the ability to dynamically sort within the group. All of the examples we've seen so far loose the grouping once you sort.
Group1
-----item 1 --- detail 1
-----item 2 --- detail 2
Group2
-----item 3 --- detail 1
-----item 6 --- detail 2
Group3
-----item 7 --- detail 1
-----item 4 --- detail 2
apply DESC sort on Item column
Group1
-----item 2 --- detail 1
-----item 1 --- detail 2
Group2
-----item 6 --- detail 1
-----item 3 --- detail 2
Group3
-----item 7 --- detail 1
-----item 4 --- detail 2
Any assistance would be greatly appreciated.
Thanks
C.