I have an ObservableCollection feeding a DataGrid thats updating nicely.
The point: I want to filter (collapse) the rows without removing them from the collection.
Is there a way to do this, or place a view on the Grid like normal .Net?
|
|
I have an ObservableCollection feeding a DataGrid thats updating nicely. The point: I want to filter (collapse) the rows without removing them from the collection. Is there a way to do this, or place a view on the Grid like normal .Net?
|
||
|
|
|
|
I've just published a post on my blog that addresses this exact issue. Attached to the post is a simple demo application that demonstrates how to achieve what you want. The solution should be general enough to be reusable and is based around the following custom extension method:
|
||
|
|
|
|
If you have a view on top of your observable collection you can achieve that. I have written an article on filtering the Silverlight datagrid. you have there a FilteredCollectionView on which you can add any IFilter. Here is the link to the article: http://www.codeproject.com/KB/silverlight/autofiltering_silverlight.aspx Hope it helps you. |
||
|
|