Hello,
I am dynamically refreshing the grid’s data based on the selection in a DropDown. Here is my code:
//handle the schedule change
$(‘#lstSchedules’).on(‘change’, function (event) {
$(“#ScheduleId”).val(GetSelectedSchedule());
source.url = ‘/Home/GetSchedule/’ + $(“#ScheduleId”).val();
dataAdapter.dataBind();
RenderColumnHeaders();
});
During the data load the grid itself does not indicate that new data is being loaded.
Is there a way to indicate to the user that new data is being loaded in the grid. I would like to see the grid cleared from the old data and the loading circle show up during the data refresh. Can this be accomplished?
Thank you.