Cannot read property 'deepExtend' of undefined
Cannot read property 'deepExtend' of undefined
snirco
Posts: 1Questions: 1Answers: 0
Hello
I'm trying to create kendoGrid with server paging but got the folowing error:
kendo.grid.min.js:25Uncaught TypeError: Cannot read property 'deepExtend' of undefined
<script type="text/javascript" language="javascript" class="init">
$(document).ready(function() {
$("#grid").kendoGrid({
dataSource: {
type: "odata",
transport: {
read: "derived_roles_service.jsp"
},
schema: {
model: {
fields: {
description: { type: "string" }
name: { type: "string" }
}
}
},
pageSize: 20,
serverPaging: true,
serverFiltering: true,
serverSorting: true
},
height: 550,
filterable: true,
sortable: true,
pageable: true,
columns: [{
field: "name",
title: "name"
},
{
field: "description",
title: "description"
}
]
});
});
</script>
This discussion has been closed.
Answers
Thanks for your question - however, per the forum rules can you link to a test case showing the issue please. This will allow the issue to be debugged.
Information on how to create a test page, if you can't provide a link to your own page can be found here.
Thanks,
Allan
Actually, why are you asking a Kendo Grid question in the DataTables forum? I can't help you with someone else's software!
Thanks,
Allan