Scheduler with Grid View not ajax loading

I have a scheduler with a grid view. It doesn’t seem to be calling the Data method after the initial load when paging as the other views do by clicking forward and backward buttons. Does the Grid View support dynamic loading?

var scheduler = new DHXScheduler();
scheduler.DataAction = Url.Action("GetData");
scheduler.LoadData = true;
scheduler.EnableDataprocessor = true;
scheduler.EnableDynamicLoading(SchedulerDataLoader.DynamicalLoadingMode.Day);
var grid = BuildGrid();
var weekStartOffset = ((int)DayOfWeek.Sunday - (int)DateTime.Now.DayOfWeek);
var start = DateTime.Now.AddDays(weekStartOffset);
start = start.AddHours(-start.Hour).AddMinutes(-start.Minute).AddSeconds(-start.Second);
grid.From = start;
grid.Paging = true;
scheduler.InitialDate = start;

scheduler.Views.Clear();
scheduler.Views.Add(grid);
scheduler.InitialView = grid.Name;

Hi,
we’ve confirmed bug with dynamic loading in grid view, currently it not works when you switching dates in year view. We’ll update package at the end of the month.

However, the initial loading should work as expected