Silverlight DataGridRows in a DataGrid - how do I hide them selectively? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:18:57Z http://stackoverflow.com/feeds/question/485437 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/485437/silverlight-datagridrows-in-a-datagrid-how-do-i-hide-them-selectively 0 Silverlight DataGridRows in a DataGrid - how do I hide them selectively? burnt_hand 2009-01-27T21:46:37Z 2009-01-29T21:08:15Z <p>I have an ObservableCollection feeding a DataGrid thats updating nicely.</p> <p>The point: I want to filter (collapse) the rows without removing them from the collection.</p> <p>Is there a way to do this, or place a view on the Grid like normal .Net?</p> http://stackoverflow.com/questions/485437/silverlight-datagridrows-in-a-datagrid-how-do-i-hide-them-selectively/491306#491306 0 Answer by Peter McGrattan for Silverlight DataGridRows in a DataGrid - how do I hide them selectively? Peter McGrattan 2009-01-29T11:46:13Z 2009-01-29T11:46:13Z <p>I've just <a href="http://petermcg.wordpress.com/filtering-silverlight-datagrid-rows" rel="nofollow">published a post on my blog that addresses this exact issue</a>.</p> <p>Attached to the post is a simple demo application that demonstrates how to achieve what you want.</p> <p>The solution should be general enough to be reusable and is based around the following custom extension method:</p> <pre><code>public static class Extensions { /// &lt;summary&gt; /// Applies an action to each item in the sequence, which action depends on the evaluation of the predicate. /// &lt;/summary&gt; /// &lt;typeparam name="TSource"&gt;The type of the elements of source.&lt;/typeparam&gt; /// &lt;param name="source"&gt;A sequence to filter.&lt;/param&gt; /// &lt;param name="predicate"&gt;A function to test each element for a condition.&lt;/param&gt; /// &lt;param name="posAction"&gt;An action used to mutate elements that match the predicate's condition.&lt;/param&gt; /// &lt;param name="negAction"&gt;An action used to mutate elements that do not match the predicate's condition.&lt;/param&gt; /// &lt;returns&gt;The elements in the sequence that matched the predicate's condition and were transformed by posAction.&lt;/returns&gt; public static IEnumerable&lt;TSource&gt; ApplyMutateFilter&lt;TSource&gt;(this IEnumerable&lt;TSource&gt; source, Func&lt;TSource, bool&gt; predicate, Action&lt;TSource&gt; posAction, Action&lt;TSource&gt; negAction) { if (source != null) { foreach (TSource item in source) { if (predicate(item)) { posAction(item); } else { negAction(item); } } } return source.Where(predicate); } } </code></pre> http://stackoverflow.com/questions/485437/silverlight-datagridrows-in-a-datagrid-how-do-i-hide-them-selectively/493427#493427 0 Answer by Stepi for Silverlight DataGridRows in a DataGrid - how do I hide them selectively? Stepi 2009-01-29T21:08:15Z 2009-01-29T21:08:15Z <p>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:</p> <p><a href="http://www.codeproject.com/KB/silverlight/autofiltering_silverlight.aspx" rel="nofollow">http://www.codeproject.com/KB/silverlight/autofiltering_silverlight.aspx</a></p> <p>Hope it helps you.</p>