This question is locked. New answers and comments are not allowed.
Hello,
I am using the Telerik RadGridView control in my Silverlight application. A user can sort the items in the grid when they click one of the column headings. Below the grid is a button. When the user clicks the button, I need to loop through the items in the order by which they have been sorted by. Currently, I'm trying to following:
Unfortunately, the order seems to be the same as when I originally bound the items to the grid. How do I programmatically get the list of entries in their sorted order?
Thanks!
I am using the Telerik RadGridView control in my Silverlight application. A user can sort the items in the grid when they click one of the column headings. Below the grid is a button. When the user clicks the button, I need to loop through the items in the order by which they have been sorted by. Currently, I'm trying to following:
// Attempt #1foreach (var item in myGridView.Items){ // Do stuff}// Attempt #2foreach (var item in myGridView.ItemsSource){ // Do stuff}Unfortunately, the order seems to be the same as when I originally bound the items to the grid. How do I programmatically get the list of entries in their sorted order?
Thanks!