Silverlight DataGridRows in a DataGrid - how do I hide them selectively? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:18:57Zhttp://stackoverflow.com/feeds/question/485437http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/485437/silverlight-datagridrows-in-a-datagrid-how-do-i-hide-them-selectively0Silverlight DataGridRows in a DataGrid - how do I hide them selectively?burnt_hand2009-01-27T21:46:37Z2009-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#4913060Answer by Peter McGrattan for Silverlight DataGridRows in a DataGrid - how do I hide them selectively?Peter McGrattan2009-01-29T11:46:13Z2009-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
{
/// <summary>
/// Applies an action to each item in the sequence, which action depends on the evaluation of the predicate.
/// </summary>
/// <typeparam name="TSource">The type of the elements of source.</typeparam>
/// <param name="source">A sequence to filter.</param>
/// <param name="predicate">A function to test each element for a condition.</param>
/// <param name="posAction">An action used to mutate elements that match the predicate's condition.</param>
/// <param name="negAction">An action used to mutate elements that do not match the predicate's condition.</param>
/// <returns>The elements in the sequence that matched the predicate's condition and were transformed by posAction.</returns>
public static IEnumerable<TSource> ApplyMutateFilter<TSource>(this IEnumerable<TSource> source,
Func<TSource, bool> predicate,
Action<TSource> posAction,
Action<TSource> 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#4934270Answer by Stepi for Silverlight DataGridRows in a DataGrid - how do I hide them selectively?Stepi2009-01-29T21:08:15Z2009-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>