I have telerik radgrid with many records. when applying a filter on columns it take some time to load the records. Here i want to show a busy indicator or similar process while applying the filter. I tried setting radgrid busy property to true in "Filtering" event and setting it to false in "Filtered" event. But it doesn't seems working.
Ex:
private void Grid_Filtering(object sender, GridViewFilteringEventArgs e)
{
grid.IsBusy = true;
}
private void Grid_Filtered(object sender, GridViewFilteredEventArgs e)
{
grid.IsBusy = false;
}
Any help would be appreciated. Thanks in advance.
Ex:
private void Grid_Filtering(object sender, GridViewFilteringEventArgs e)
{
grid.IsBusy = true;
}
private void Grid_Filtered(object sender, GridViewFilteredEventArgs e)
{
grid.IsBusy = false;
}
Any help would be appreciated. Thanks in advance.