I am trying to figure out how I can integrate the scheduler widget to dynamically load it’s data at runtime.
I see I can configure a data adapter to use a URL but it seems to only serves for initial loading.
I don’t want to load all the database !! I want to load only required data for the displayed date range.
And respond / reload data upon date range change (user changes month / week / day).
You could try to create with custom logic on dataChange event. $('#jqxScheduler').on('dateChange', function (event) { var args = event.args; var date = args.date; var from = args.from; var to = args.to; });
Also I would like to suggest you one article about the DataAdapter.
I would like to draw your attention to formatData callback.