I'm using endless scrolling. (based on this code: "Endless scrolling of 2mil. records" that is updated for Q2010 here: http://www.telerik.com/ClientsFiles/159249_wpfapplication1.zip)
The problem is I can't get data from selected row. I see the data in debugger (var row = radGrid.SelectedItem;) but don't know How to get.
I can change the "QueryableCollectionView" from:
orderby s.artist, s.title |
select new { s.artist, s.title, s.id}); |
to:
orderby s.artist, s.title |
select s); |
Then I can get my class from Datacontex, but then the grid scroll to top evrytime it fill ut with new data, and I don't like that...
f__AnonymousType