我有一个带有日期列的网格,我在其中应用了一个可过滤的选项,当我过滤时,我没有得到任何结果。
我的网格:
var element = $("#grid").kendoGrid({
dataSource: {
data: gridDataSource,
schema: {
model: {
fields: {
Date: { type: "date", editable: false },
}
}
}
},
scrollable: true,
filterable : true,
columns: [
{
"field": "Date", "title": "Date", "format": "{0:MM/dd/yyyy}", filterable : {ui: function (e) {e.kendoDatePicker({format: "MM/dd/yyyy"})}}, width: "100px" }],
});
答案 0 :(得分:0)
在.data("kendoGrid");
声明结尾处可能缺少kendogrid()
。
为了方便,我做了 working example。
希望这个帮助
ps:在示例中按1966/01/27过滤以进行检查。