vote up 0 vote down star

I have a Silverlight 2.0 DataGrid that contains a list of items that needs to be refreshed in an interval to display the up-to-the-minute information. There are items in this grid that may be added and may be removed while the screen is being displayed to the current user. For Example:

If grid looks like the following, then after a minute the data needs to be refreshed because another user has added a 4th entry. (notice the sort is assending by Last Name)

Data Grid

Then when I get the new data set and set it to the datagrid's DataSource property, it resorts the array based on my first column like so:

Data Grid2

Is there any way to reapply the sort after the data source has been updated? I'd like to save the fact that the data grid is sorted by last name, then update the data source, and then reapply the sort to the data grid. So, in the end the datagrid would look like the following:

Data Grid3

These screen shots are of course not a Silverlight data grid, but this is for simplicity in explaining the situation.

flag

3 Answers

vote up 0 vote down

Probably the best way to go about it is to use PagedCollectionViews, although I have not tested this out myself, these classes contain a property that stores the different sorting methods applied to them. I believe that you can probably grab the current sorting element from one collection, connect to the new collection, and apply the sorting to the new collection.

For a more in depth discussion on how this all works, you can follow the explanation here

link|flag
I will give this a shot and let you know if it works for what I'd like. I'll also post the code (and maybe screen shots) of what I did and how I did it. Thanks for the answer! – Scott Aug 20 at 20:40
Scott - I am having the same problem. Did you find a resolution for this? – Lee Roth Sep 22 at 17:54
When I look at your link to MSDN, I see PagedCollectionView explained, but I do notice that this is for Silverlight 3.0, not Silverlight 2.0. I cannot find this in Silverlight 2.0, is there an equivalent for the 2.0 side of things? – Scott Nov 5 at 16:38
vote up 0 vote down

I tried using PagedCollectionViews as well as CollectionViewSources (I used the new collection to overwrite the existing source collection).

My solution isn't the most elegant, but it works. When updating the source of the DataGrid I did my own change detection.

In other words, instead of blindly overwriting the source collection I iterated through the new collection, compared each item to the existing collection, and updated the existing items where possible.

Hope that helps.

link|flag
This PagedCollectionView(s) class does not exist in SL 2.0, I don't think. If I'm wrong, can you point me to where this is? Thanks – Scott Nov 6 at 15:03
Sorry, you're right, it's in SL 3. – Lee Roth Nov 10 at 14:26
vote up 0 vote down check

After researching how to do this, I have figured it out. I tried to implement what the others said to try, but could not get it to work in Silverlight 2.0. Thus, I searched StackOverflow and Google for more answers. ScottLogic and CodeProject seemed to be what I was looking for but I couldn't get them to work fully. So with a bit of frustration and playing around with code, I finally arrived on the solution.

If the collection that you're using for your DataGrid's ItemsSource is ObservableCollection(Of T), you can get the ability of sorting for the object, plus you can update the collection dynamically at runtime, causing the grid to refresh with the item you insert. I've created a Google Code project that is GPL for you to checkout and download. Please note that I'm using the Microsoft Silverlight 2.0 DataGrid December 2008 Release for this project. I have linked to this download on the project page as well. (The dll's required are referenced from within a lib folder inside the project).


Enjoy!


Silverlight 2.0 DataGrid Sort Project on Google Code

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.