如何使用嵌套的Json填充Kendo UI网格?

如何使用嵌套的Json填充Kendo UI网格?,第1张

如何使用嵌套的Json填充Kendo UI网格

对于复杂的JSON结构,您可以使用

schema.parse

var grid = $("#grid").kendoGrid({    dataSource : {        data: [ {     "oneType": [         {"id": 1, "name": "John Doe"},         {"id": 2, "name": "Don Joeh"}     ] }, {"othertype": "working"}, {"otherstuff": "xyz"}        ],        pageSize: 10,        schema  : { parse : function(d) {     for (var i = 0; i < d.length; i++) {         if (d[i].oneType) {  return d[i].oneType;         }     }     return []; }        }    }}).data("kendoGrid");

如果您将JSON稍微更改为:

{    "oneType"   : [        {"id": 1, "name": "John Doe"},        {"id": 2, "name": "Don Joeh"}    ],    "othertype" : "working",    "otherstuff": "xyz"}

那么您可以使用:

var grid = $("#grid").kendoGrid({    dataSource: {        data: { "oneType"   : [     {"id": 1, "name": "John Doe"},     {"id": 2, "name": "Don Joeh"} ], "othertype" : "working", "otherstuff": "xyz"        },        pageSize: 10,        schema  : { data: "oneType"        }    }}).data("kendoGrid");


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5013510.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存