我在Kendo ListView中使用以下JSON
数据:
[
{
"Id": 2,
"Name": "My Name",
"Address": "123 Sesame Street",
"City": "My City",
"State": "MO",
"ProductTypes": [
{
"Id": 2,
"Name": "Cage Free"
},
{
"Id": 3,
"Name": "Free-Trade"
},
{
"Id": 4,
"Name": "GAP"
},
{
"Id": 6,
"Name": "Grass Fed"
}
]
}
]
现在,这是我的目标/问题。我想在选中复选框时过滤数据源,我想要过滤的字段是ProductTypes.Name
字段。
但是,我不确定如何正常工作。
这是我的DataSource
:
profileDataSource: new kendo.data.DataSource({
transport: {
read: {
url: "/Profile/GetAllProfiles",
dataType: "json"
}
},
schema: {
model: {
fields: {
Id: { type: "number", editable: false, nullable: true },
Name: { type: "string" },
ProductTypes_Name: { type: "string", from: "ProductTypes.Name" }
}
}
}
})
以下是我目前正在尝试过滤但不起作用的方式:
$("#profileCertificationsListView").on("click", "input[type=checkbox]", function() {
viewModel.profileDataSource.filter({
filters: [
{ field: "ProductTypes_Name", operator: "eq", value: $(this).attr("name") }
]
}
});
例如,如果我选中名为“Cage Free”的复选框,则列表视图中的所有项目都将被隐藏。
----- 更新 -----
由于@ Suresh-c
的帮助,我已经找到了解决问题的方法这就是我现在所做的工作:
$("#profileCertificationsListView").on("click", "input[type=checkbox]", function() {
var name = $(this).attr("name");
var list = $("#profileDirectoryListView").data("kendoListView").dataSource.data();
var filtered = [];
for (var i = 0; i < list.length; i++) {
for (var j = 0; j < list[i].ProductTypes.length; j++) {
if (list[i].ProductTypes[j].Name === name) {
filtered.push(list[i]);
}
}
}
$("#profileDirectoryListView").data("kendoListView").dataSource.data(filtered);
});
答案 0 :(得分:1)
我有类似的要求,我使用parse函数对嵌套的JSON数据应用过滤器。查看this thread了解详细信息。
架构看起来像这样。
schema: {
parse: function (d) {
var filtered = [];
for (var i = 0; i < d.length; i++) {
for(var j=0; j < d[i].ProductTypes.results.length; j++) {
if (d[i].ProductTypes.results[j].Name == "Cage Free")
filtered.push(d[i]);
}
}
return filtered;
}
}