因此,我按照Kendo 提供的示例使用外部数据源,由于某种原因,当您放置 Default.aspx/GetEvents 的 URL(其中 GetEvents 是 Default.aspx 中的网络方法)时,它会返回 Default.aspx 的整个 HTML只是在普通的 AJAX 调用中调用 webmethod。
所以我找到了一种解决方法,我使用了本地数据源方法,它调用了一个javascript函数——这个javascript函数在default.aspx中对我的webmethod进行了自己的ajax调用,并获得了成功的响应
所以这是我的代码
$(document).ready(function () {
$("#grid").kendoGrid({
dataSource: {
data: createRandomData(),
schema: {
data: "d"
},
pageSize: 10
},
height: 250,
scrollable: true,
sortable: true,
filterable: true,
pageable: {
input: true,
numeric: false
},
columns: [
{
field: "Title",
title: "Title",
width: 100
},
{
field: "StartDate",
title: "StartDate",
width: 100
},
{
field: "Keywords",
width: 100
}
]
});
});
这是 createRandomData() 返回的开始 - 它是有效的 json - 我只是不想全部粘贴并让这个问题不可读
"d" : [
{
"Title": "Chicago BlackHawks vs. Detroit Redwings",
"StartDate": "9/7/2012 12:00:00 AM",
"Keywords": "-- Select --"
},
{
"Title": "",
"StartDate": "1/1/1900 12:00:00 AM",
"Keywords": "-- Select --"
}, .......
我看不出为什么这不起作用,现在网格只是说“正在加载......”并且永远保持这种状态,没有控制台错误
function createRandomData() {
$.ajax({
type: "POST",
url: "MyEvents.aspx/GetEvents",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
var rs = msg;
return rs;
}
});
return false;
}