TypeError : r.getClientRects is not a function

TypeError : r.getClientRects is not a function

我正尝试在 KendoUI 网格中创建一个自定义工具栏,遵循此 link:http://demos.telerik.com/kendo-ui/grid/toolbar-template 但遇到错误。

这就是我要在我的代码中做的事情:

<div id="example">
    <script type="text/x-kendo-template" id="template">
        <div class="toolbar">
            <label class="category-label" for="category">Show products by category:</label>
            <input type="search" id="category" style="width: 150px" />
        </div>
    </script>
    <div id="grid"></div>
    <script>
        $(document).ready(function () {
            var grid = $("#grid").kendoGrid({
                dataSource: {

                    transport: {
                        read: {
                            url: 'http://localhost:52738/Default1/KendoDataAjaxHandle',
                            type: "post",
                            dataType: "json"
                        }
                    },
                    schema: {
                        data: "Data",
                        total: function (response) {
                            return $(response.Data).length;
                        }
                    },
                    pageSize: 10
                },
                toolbar: kendo.template($("#template").html()),
                groupable: true,
                sortable: true,
                pageable: {
                    refresh: true,
                    pageSizes: true,
                    buttonCount: 5
                },
                columns: [
                            {
                                field: "CustomerAltID",
                                filterable: true
                            },
                            {
                                field: "CustomerID",
                                title: "Customer ID"
                            },

                            {
                                field: "CustomerName",
                                title: "Customer Name",

                                template: "<div class='customer-photo'" +
                                                            "style='background-image: url(../Content/Images/customerimg/#:data.CustomerID#.jpg);'></div>" +
                                                        "<div class='customer-name'>#: CustomerName #</div>"
                            },
                            {
                                field: "Gender",
                                title: "Gender",
                                template: "<div class='gender-photo'" +
                                                            "style='background-image: url(../Content/Images/#:data.Gender#.jpg);'></div>" 

                            }
                ]
            });
            var dropDown = grid.find("#category").kendoDropDownList({
                dataTextField: "Gender",
                dataValueField: "CustomerID",
                autoBind: false,
                optionLabel: "All",
                dataSource: {

                    severFiltering: true,
                    transport: {
                        read: {
                            url: 'http://localhost:52738/Default1/KendoDataAjaxHandle',
                            type: "post",
                            dataType: "json"
                        }
                    },
                    schema: {
                        data:"Data"
                    }
                },
                change: function () {
                    var value = this.value();
                    if (value) {
                        grid.data("kendoGrid").dataSource.filter({ field: "CustomerID", operator: "eq", value: parseInt(value) });
                    } else {
                        grid.data("kendoGrid").dataSource.filter({});
                    }
                }
            });
        });
    </script>
</div>

我不知道问题出在哪里,我已经好几个小时都找不到解决方案了。

我正在使用以下版本- Jquery v-3.1 和 Jquery UI-1.12

问题可能是由于使用 jQuery v3.1

Kendo 目前不能正式使用 jQuery v3。但显然 可以 如果你还包含 jquery-迁移。 http://www.telerik.com/forums/jquery-3-0

官方支持的 jQuery 版本如下: http://docs.telerik.com/kendo-ui/intro/installation/prerequisites#supported-jquery-versions 请注意,它指出 Kendo R3 2016 SP2 也应该与 jQuery 3.1.1.

一起使用

因此,您可以:

  1. 使用任何 with/is 支持的 jQuery 版本 您使用的 Kendo 版本
  2. 或将 jQuery 3.1 与 jquery-migrate
  3. 结合使用
  4. 或使用 Kendo R3 2016 SP2 和 jQuery 3.1.1

github issue 中提到的另一种可能性是将 <script src="https://code.jquery.com/jquery-migrate-3.0.0.min.js"></script> 包含在 html 中。这对我有用。