As you can see, I'm new here - I realy tried to search, but didn't find something to solve my problem.
so here is my problem. if I do this:
console.log($("#grid").data("kendoGrid")._data);
This shows in the console like this:
So I understand this: There is an Array with an Object with data. I need, what is in Description --> the "sd" but i can't get access to it.
so, i tried to get the data from description like this:
console.log($("#grid").data("kendoGrid")._data[0].toString(Description));
This shows in the console like this:
Then i tried to get access with this
console.log(JSON.stringify($("#grid").data("kendoGrid")._data[0].Description));
This shows in the console like this:
What I need is the "sd" from the first picture.
UPDATE:
here is the output from JSON.stringify($("#grid").data("kendoGrid")._data[0]
and if i do this without stringify, there is just a freespace in the console.log :-/