问题 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: "#" }, {