Hi
I'm using Kendo scheduler for my application. I'm using a custom button for skipping a particular number of days, but after calling my service function and on calling the setDataSource() I'm getting the error.
My code goes something like this
service.getEvent(startDate,endDate).then(function(response){
$scope.event=response;
$scope.scheduler.setDataSource({
data:$scope.event,
schema:getSchema
});
});
I'm able to get the response , the error occurs in $scope.scheduler.setDataSource()
The current version I'm using is
jquery- 3.1.1
angularjs - 1.7.0
kendo-ui- 2018.2.516