0
Bind ich bin das Ergebnis eines Web-API (Post) Anruf an ein Kendo-Gitter zu binden. Das Ergebnisformat istBind json Daten zu Kendo Gitter
{
"Id": 121,
"referenceId": 18222,
"status": null,
"message": "Completed"
}
API-Aufruf ist:
read: {
url: //url,
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
},
parameterMap: function() {
return JSON.stringify({ Active: false });
}
},
schema: {
data:'data'
}
Bind:
$("#grid").kendoGrid({
dataSource: dataSource
columns: [{
field: "Id",
title: "Id"
}]
});
Aber seine nicht funktioniert. :(