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 undefinedCode:
<div id="example"> <div id="grid"></div></div><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>