I have a grid that is grouped by an OrderID column
Under this grouping are my individual ordered items (quantity, sku, price, etc...)
I would like RadGrid to sort by the first sku in the order, so that as I scroll down through the grid, the first sku in each order is sorted against the first sku in the previously listed order.
If I turn off the grouping, everything will be ordered properly based on the dataset. So it's definitely doing this as part of the group by function. But then I loose my visual grouping and my Order Total (GridAggragateFunction.Sum)
Thanks.