当我使用 KendoUI Grid 的过滤器时,发生了一些非常奇怪的事情。我的网格很简单,定义是这样的:
var cols = []; cols[0] = { field: 'name', title: 'Nome', width: "65%" }; cols[1] = { field: 'eMail', title: 'eMail', width: "20%" }; cols[2] = { field: 'city', title: 'Cidade', width: "15%" }; var cfgGrid = { dataSource: dsPersons, batch: false, change: onSelectedRow, selectable: "row", resizable: true, scrollable: true, sortable: { mode: 'multiple', allowUnsort: true }, filterable: true, editable: false, pageable: { numeric: false }, columns: cols }; gridPessoas = null; gridPessoas = $("#gridElem").kendoGrid(cfgGrid).data("kendoGrid");
网格在 url 中正确显示:
但是当我尝试过滤任何列时 kendoUI 重定向到一个页面:
网格没问题,只有在我定义过滤器值并单击过滤器按钮时才会出现错误。
这是一个 ASP.NET MVC 4 站点。我无法想象发生了什么。
你能帮助我吗 ???
提前致谢