kendo-ui

How to perform server side filtering on Kendo UI Grid

社会主义新天地 提交于 2020-08-05 05:57:50
问题 I am trying to implement server side filtering for a Kendo UI grid (client only). I am not sure how to pass the filter operator and value entered on the filter box. I was able to implement server paging and want the filtering to work alongside the server paging, i.e. show page 2 of 5 items of filtered rows. I saw some example of binding the request to "DataSourceRequest" object but we do not have licence for the server side Kendo UI and have to achieve it using the client side changes only.

How can I mapping nested Json to Kendo UI grid?

不想你离开。 提交于 2020-07-23 06:20:34
问题 I use a web api to send data to display in Kendo UI grid. my web api return a nested json. As follows: { "SearchRequest": { "Term": null, "SortDirection": "Desc", "Total": 0, "PageIndex": 1, "PageSize": 10, "CurrentSort": null }, "OperationalRisks": [ { "LocationCode": 224.0, "RegisterDate": "1/01/01" }, { "LocationCode": 211.0, "RegisterDate": "1/01/01" } ] } After that, I will try to display the data in the following way : columns: [ { field: "OperationalRisks.LocationCode", title: "#" }, {