Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/regex/19.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Kendo ui KendoUi schedulardata不以schedular格式显示_Kendo Ui - Fatal编程技术网

Kendo ui KendoUi schedulardata不以schedular格式显示

Kendo ui KendoUi schedulardata不以schedular格式显示,kendo-ui,Kendo Ui,我无法使用远程绑定在kendoUI->read函数的调度表中显示数据。 从kendoUI Scheduar读取数据是否有任何特殊方法,或者我是否遗漏了什么,请正确指导我 通过ajax读取的数据在firebug中显示,但不在schedular中显示 ajax正在工作,但有一些代码我不知道,请帮我解决这个问题 $("#scheduler").kendoScheduler({ date: new Date("2014/6/01"), startTime: new Date("201

我无法使用远程绑定在kendoUI->read函数的调度表中显示数据。 从kendoUI Scheduar读取数据是否有任何特殊方法,或者我是否遗漏了什么,请正确指导我

通过ajax读取的数据在firebug中显示,但不在schedular中显示 ajax正在工作,但有一些代码我不知道,请帮我解决这个问题

    $("#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"}

                }
         }
      }
}); 
}); 
请帮我解决上述问题,
提前感谢。

您有没有尝试过使用kendoUi Schedular演示的?请试试这个