我正在使用KendoUI网格小部件,其中包含以下设置:
<script>
$(function() {
$("#grid").kendoGrid({
dataSource: {
data: [
{ id: 1, title: "foo" },
{ id: 2, title: "bar" }],
transport: {
read: "/GetList"
},
schema: {
type: "json",
model: {
fields: {
Title: { type: "string" }
}
}
}
},
height: 430,
columns: [{
field: "Title"
}]
});
});
</script>
问题是,如果transport
的{{1}}属性存在,则dataSource
属性似乎被忽略(而是执行额外的GET请求)。
有没有办法告诉网格(dataSource)显示初始数据,但仍然加载远程数据,例如,使用分页或排序/过滤?