This question is locked. New answers and comments are not allowed.
Hi,
in my application i have one radgrid and radio buttons(like 1)100days 2) 1 year 3)user specified date.
here whn data loading into page first time by default 1st radio button is selecting.
when page is loading the data is loading into radgrid (from data context) by showing the busyindicatror control.
till here its working fine.
but here am getting the prob is that when am selecting the radio button i have to show the busy indicator and then load data into
radgrid. but in my application whn am selecting radio button am getting data directly without showing the busy indicator.
am used display after method also in busy indicator. but its not working.
here is sample code.
private void yearRadBtn_Checked(object sender, RoutedEventArgs e)
{
radBusyIndicator.IsBusy = true;
dateGrid.Visibility = Visibility.Collapsed;
yearRadBtn.IsChecked = true;
startDateVar = DateTime.Today.AddDays(-365);
endDateVar = DateTime.Today;
this.Check_BasicSerach_Selection();
}
thanks in advance.
in my application i have one radgrid and radio buttons(like 1)100days 2) 1 year 3)user specified date.
here whn data loading into page first time by default 1st radio button is selecting.
when page is loading the data is loading into radgrid (from data context) by showing the busyindicatror control.
till here its working fine.
but here am getting the prob is that when am selecting the radio button i have to show the busy indicator and then load data into
radgrid. but in my application whn am selecting radio button am getting data directly without showing the busy indicator.
am used display after method also in busy indicator. but its not working.
here is sample code.
private void yearRadBtn_Checked(object sender, RoutedEventArgs e)
{
radBusyIndicator.IsBusy = true;
dateGrid.Visibility = Visibility.Collapsed;
yearRadBtn.IsChecked = true;
startDateVar = DateTime.Today.AddDays(-365);
endDateVar = DateTime.Today;
this.Check_BasicSerach_Selection();
}
thanks in advance.