Cannot read property 'deepExtend' of undefined

Cannot read property 'deepExtend' of undefined

snircosnirco 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>

Answers

  • allanallan Posts: 63,812Questions: 1Answers: 10,516 Site admin

    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

  • allanallan Posts: 63,812Questions: 1Answers: 10,516 Site admin

    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

This discussion has been closed.