I cannot display the data in the schedule of the kendoUI-> read function using remote binding. Is there any special way to read data from kendoUI schedualr or AM that I missed, something please direct me correctly.
Reading data via ajax is displayed in Firebug, but not showing on schedule ajax works, but there is some code gap that I donβt know, please help me get out of this
$("#scheduler").kendoScheduler({ date: new Date("2014/6/01"), startTime: new Date("2014/6/01 07:00 AM"), height: 600, views: [ "day", "week", "month", { type: "workWeek", selected: true }, ], timezone: "Etc/UTC", transport: { read: { url: "http://abc/abcxyz/abc/read", dataType: "json" }, update: { url: "http://demos.telerik.com/kendo-ui/service/tasks/update", dataType: "jsonp" }, create: { url: "http://demos.telerik.com/kendo-ui/service/tasks/create", dataType: "jsonp" }, destroy: { } }, schema: { model: { id: "id", fields: { id:{ type: "number", from: "business_id"}, from: { type: "date", from: "from" }, to: { type: "date", from: "to" }, id:{ type: "number", from: "id"}, name:{ type: "string", from: "name"} } } } }); });
Please help me in the release above, Thanks in advance.
source share