Filtering Records in Silverlight DataGrid using PagedCollectionView
In my last article, we discussed about “Grouping Records in Silverlight DataGrid using PagedCollectionView” where we grouped our data records by column name using the PagedCollectionView.
In this article, we will see how this PagedCollectionView will help us to filter out the records based on the search keyword. Not much code but the trick done with the same class will do everything for us in some easy way. We will learn about this here in this article. Not only this, we will also see the filtering on top of the grouped records too. Read the complete article to see it in action.
Background
If you didn’t read my previous article, I will ask you to read that article (“Grouping Records in Silverlight DataGrid using PagedCollectionView”) first and then come to read this one. It will help you in many cases to understand the basic requirement and the code.
Now come to the actual article. In some cases we need to filter the DataGrid records based on the search key. A DataGrid may contain a huge collection of data and in that case, finding a particular record is very difficult. In such time, you need to filter the records.
In this article, we will implement the same filtering feature in some quick easy steps.
XAML Design
First of all, we need to redesign our existing XAML page with a Search TextBox as shown below:
To do this, we need a TextBlock (which is optional) to label the TextBox. The TextBox is a mandatory field where you will be able to insert the search query. Whenever the end user types something here, the DataGrid will filter the records.
Here is the complete XAML for your reference:
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:viewModels="clr-namespace:DataGridDemo1.ViewModels"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"
x:Class="DataGridDemo1.Views.MainView">
<UserControl.Resources>
<viewModels:MainViewModel x:Key="MainViewModel"/>
</UserControl.Resources>
<StackPanel x:Name="LayoutRoot" Background="White"
DataContext="{StaticResource MainViewModel}">
<StackPanel Orientation="Horizontal">
<ComboBox Width="200" Height="20" Margin="10"
HorizontalAlignment="Left"
SelectionChanged="ComboBox_SelectionChanged">
<ComboBoxItem Content="City"/>
<ComboBoxItem Content="State"/>
<ComboBoxItem Content="Department"/>
</ComboBox>
<TextBlock Text="Filter Records by: " Height="20"/>
<TextBox Width="150" Height="25" TextChanged="TextBox_TextChanged"/>
</StackPanel>
<sdk:DataGrid
IsReadOnly="True" Margin="10" Height="300" ItemsSource="{Binding Employees}"/>
</StackPanel>
</UserControl>
You will see that, not a big change there. We used one extra StackPanel to make our application UI layout clean and proper.
Playing with the Code
It’s time for us to write the code inside the ViewModel to do the filtering. Make sure that, we will use the class named “PagedCollectionView” which we used earlier. Hence, we are familiar with the collection too.
Add a private string variable called “searchKey” which we will use internally for our feature implementation. Now, write a new method “FilterDataBySearchKey()” passing the search key to it to store in the member variable.
You will notice that, the PagedCollectionView has a property called “Filter” which takes Predicate. This Filter predicate will do the tricks for our requirement. Here, our PagedCollectionView is our collection named “Employees”. First of all set the Filter of this collection to null to remove the previous filtering. Then set a new Predicate function call to it. Inside the predicate action, do your filtering mechanism.
Have a look into the below ViewModel code to understand the same:
private string searchKey;
/// <summary>
/// Filters the data by search key.
/// </summary>
/// <param name="searchKey">The search key.</param>
public void FilterDataBySearchKey(string searchKey)
{
this.searchKey = searchKey;
Employees.Filter = null;
Employees.Filter = new Predicate<object>(FilterRecords);
}
/// <summary>
/// Filters the records.
/// </summary>
/// <param name="obj">The obj.</param>
/// <returns></returns>
private bool FilterRecords(object obj)
{
var employee = obj as Employee;
return employee != null &&
(employee.Firstname.ToLower().IndexOf(searchKey) >= 0 ||
employee.Lastname.ToLower().IndexOf(searchKey) >= 0 ||
employee.City.ToLower().IndexOf(searchKey) >= 0 ||
employee.State.ToLower().IndexOf(searchKey) >= 0);
}
You will see that the FilterRecords() is the actual predicate to the PagedCollectionsView’s Filter key. Here we searched whether the “searchKey” is present in the Firstname, Lastname, City or State by using the IndexOf(). This will search anywhere in the value for the matching key.
If you want to implement it for the first characters of string, you can use StartsWith() too. We are searching for only Firstname, Lastname, City and State. You can include more or reduce some too from the actual logic.
As our actual code is ready, we need to integrate that with the TextChanged event. To do this, go to the code behind file and inside the TextBox_TextChanged event, get the search Key from the TextBox’s Text and pass it to the viewmodel’s method.
Here is the same code:
private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
string searchKey = (sender as TextBox).Text.Trim().ToLower();
(Resources["MainViewModel"] as MainViewModel).FilterDataBySearchKey(searchKey);
}
Up to this, our full code has been implemented. No more code require for our sample. Lets start running the application to see it in action, so that, we will be able to understand whether our code is working properly or not.
Playing with the Application
Lets build the source and run the application. You will see the same UI as we demoed in the previous article. Only change here is a TextBox which asks to enter the search key to filter the records.
Start typing something in the Filter box. You will notice that, the records are automatically filtering out as per the entered term. This filtering is happening for both Firstname, Lastname, City and State as we implemented the logic for that only.
Nice, right? Wondering whether it will work for the grouped data? Lets have a try. Group the records by department and then type something in the search box.
You will see that, the records are now filtered based on the key but in grouped manner i.e. department wise.
Modify to a different search term. You will notice the change in a fraction of second as and when you type something there in the search box.
We noticed that, all the filtering is working with the value starting with the searched key. Let us check how it works for the searched key which is in the middle of the value.
Enter ‘w’ in the TextBox and you will see that the records which has ‘w’ inside any value, has been filtered properly.
Download
Demo
End Note
Hope, this article was also interesting & helpful for you like the previous one. Wish this will help you in future to filter out the DataGrid records. Many more things are there with DataGrid. I will post another article on the same soon and that will also help you another importance of the same PagedCollectionView. Explore more to do lots of magic with DataGrid.
Don’t forget to provide your feedback/suggestion. If you have any issue, drop a line here. I will try to answer you as early as possible. Cheers.

Also, don't forget to share your views and/or feedback in the comment section below.
Cool work. Cheers
ReplyDeleteCongrats for getting the live demo work. By adding the MIME types?
ReplyDeleteHosted on some web server who gives permission to add MIME types.
ReplyDeleteHosted on some web server who gives permission to add MIME types.
ReplyDeleteHosted on some web server who gives permission to add MIME types.
ReplyDeleteNice explanation and very usefull
ReplyDeleteHi Kunal,
ReplyDeleteReally nice article. Thank you. Do you have any samples to make the filtering as like Telerik one?
By
K.Kanagasubramanian
Hi Kanagasubramanian,
ReplyDeleteI have not seen the Telerik one, but you can easily implement that if you read & understand the logic behind it first. Cheers...
Regards,
Kunal
Great example, thank you!
ReplyDeleteIs it possible to have a filter execute on a different thread or background worker? I realize with pagination, a background thread is not needed, however, I have an unsual functional requirement from my manager; that is, show the entire set of data. (since it wont be > 500 rows). The problem I'm seeing is a 2 to 3 second delay when the Filter is invoked 500 times.
I tried to add a progress bar, but can't get it to update on the UI thread without some clever hacks that basically break my mvvm pattern.
Do you have any suggestions?
its awesome article.
ReplyDeleteThank you.
Pradeep Tamanar
pagedcollectionview's are awesome. They make data presentation much easier.
ReplyDeleteHello Kunal Sir,
ReplyDeleteCan you please suggest me a good link to implement paging with Listview in WPF,MVV,Prism
Thanks
Jeetendra Sharma
Hi Jeetendra,
ReplyDeleteAdding pagination support to ListView is similar to what I demonstrated in my next post. Read it here: Paginating Records in Silverlight and let me know, if it was helpful.
Regards,
Kunal
Good day. By following your article i created below codes for filtering data from gridview of silverlight using MVVM but that code doesn't filter data.
ReplyDeleteThe problem details is given following link :
http://social.msdn.microsoft.com/Forums/en-US/silverlightgen/thread/eca76de4-e904-40a4-9673-1a56a0c3b592
I also uploaded my entire project in skydrive. If you want to view my full code you can download from following link:
https://skydrive.live.com/?cid=02ACB17B6BAC1357&id=2ACB17B6BAC1357!105
Also please if you have enough time please review my code style and suggest me best one.
I am very new in Silverlight development, MVVM pattern. So I need help from you like expert ones. So please help me and inspire me to be a professional silverlight developer with mvvm pattern.
Thanks in advance
Mojammel Haque
mojamcpds007@hotmail.com
mojamcpds@gmail.com