我需要过滤已经选择的国家。我已经从以下链接编写了代码。
http://jsbin.com/oqucix/4
当我动态定义数据源时,我没有得到记录。
var countriesDS = new kendo.data.DataSource({
transport: {
read: {
url : "/Home/Countries",
type: "POST",
dataType: "json"
}
},
schema: {
model: {
id: "id",
fields: {
id : { type: "id" },
name: { type: "string" }
}
}
}
});
然后我将能够重定向到该操作方法并检索值,但在自动完成中我没有得到记录。任何帮助表示赞赏