Silverlight 4 Datagrid Sorting

Posted by DavyMac23 on Stack Overflow See other posts from Stack Overflow or by DavyMac23
Published on 2010-05-17T18:04:10Z Indexed on 2010/05/17 19:50 UTC
Read the original article Hit count: 243

Filed under:
|
|

I'm having a heck of a time trying to get a silverlight datagrid to properly sort, and do so quickly (sub 1/10 second). Here's the scenario:

-WCF callback every 1/5 of a second -Take the callback, match up to the existing record in an ObservableCollection -Update the ObservableCollection's properties -Bind the grid.

I've tried a linq query, PagedCollectionView, and observablecollection.select(), all are waaaaaaay too slow, and introduce 12+ second delays in processing. Anyone else experience this?

© Stack Overflow or respective owner

Related posts about Silverlight

Related posts about datagrid