Currently, I am in the process of troubleshooting a KendoScheduler application, and my goal is to integrate some hard-coded data instead of relying on an ajax call.
$("#scheduler").kendoScheduler({
dataSource: {
transport: {
read: {
url: "https://demos.telerik.com/kendo-ui/service/meetings",
dataType: "jsonp"
},
... other code...
Is there a method available to utilize a string, json object, or local data source rather than providing a URL link to a service?