I've got an datasource that returns object with a parent field. When I try to show a column with a value from this field nothing is returned.
As it seems, the parent value is overwritten by kendo grid
$(
'#kendoGrid'
).kendoGrid({
dataSource: [{parent:
"value"
}],
height: 550,
columns: [{
field:
"parent"
,
title:
"Parent Field"
}]
});
shows the following value in the grid:
function (){return o}
How can I fix this?