Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/74.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 在具有虚拟化功能的剑道网格中,IE浏览器中的鼠标滚动不起作用。_Jquery_User Interface_Kendo Ui_Kendo Grid_Kendo Ui Grid - Fatal编程技术网

Jquery 在具有虚拟化功能的剑道网格中,IE浏览器中的鼠标滚动不起作用。

Jquery 在具有虚拟化功能的剑道网格中,IE浏览器中的鼠标滚动不起作用。,jquery,user-interface,kendo-ui,kendo-grid,kendo-ui-grid,Jquery,User Interface,Kendo Ui,Kendo Grid,Kendo Ui Grid,我有一个通用的网格控件,滚动在所有浏览器中都可以正常工作,但在IE 10/11(使用鼠标滚轮滚动)中滚动不工作,在剑道UI网格中显示 代码段如下所示:—— dataList.kendoGrid({ 名称:“BaseGrid”, 数据绑定:self.handleDataBoundEventHandler, 数据绑定:self.options.dataBindingEventHandler, 可编辑:self.options.editable, beforeEdit:self.options.bef

我有一个通用的网格控件,滚动在所有浏览器中都可以正常工作,但在IE 10/11(使用鼠标滚轮滚动)中滚动不工作,在剑道UI网格中显示

代码段如下所示:——

dataList.kendoGrid({ 名称:“BaseGrid”, 数据绑定:self.handleDataBoundEventHandler, 数据绑定:self.options.dataBindingEventHandler, 可编辑:self.options.editable, beforeEdit:self.options.beforeEdit, 编辑:self.options.edit, editCell:self.options.editCell, 批次:这个批次, 可导航:self.options.navigatable | | true, 初始化:self.options.initialize, 数据源:{ 键入:“json”, 组:self.options.group, 交通:交通选项, serverPaging:serverPaging, 服务器排序:服务器排序, 服务器过滤:服务器过滤, pageSize:self.pageSize, 模式:{ 模型:self.options.model, 数据:功能(响应){ if(self.options.jsonData){ response.dataList=self.options.jsonData; } 响应=自我成功(响应)


如果有任何人有任何解决方案,请告诉我。

您找到任何解决方案了吗?您找到任何解决方案了吗?
                        self.NoRecordOnsuccess(response);

                        if (self.options.isDynamicColumnsAvailable) {
                            self.trigger("configureColumnDataFetched", response.dataList);
                        }
                        if (self.options.collection) {
                            self.options.collection.set(response.dataList);
                        }
                        return response.dataList;
                    },
                    total: function (response) {
                        return response.totalRecords;
                    }
                },
                change: function (e) {
                    // Changing sort icon on sort change
                    self.changeSortIcon(this);
                    self.modifySenderData(e.sender);
                    if (self.options.changeEventHandler) {
                        self.options.changeEventHandler(e);
                    }
                },
                requestStart: function (e) {
                    if (self.options.requestStart) {
                        self.options.requestStart(e);
                    }
                },
                sort: self.options.userPreferenceSort || self.options.defaultSort
            },
            sortable: self.options.sortable,
            selectable: self.options.selectable,
            filterable: self.options.filterable,
            scrollable: {
                virtual: _.isUndefined(self.options.virtualScrollable) ? true : self.options.virtualScrollable
            },
            reorderable: self.options.reorderable,
            resizable: self.options.resizable,
            columnReorder: function (e) {
                // Update the User preference model with new sequence no
                setTimeout(function () {
                    self.updateColumnSequenceNumber(self.getDataList().columns);
                }, 5);
            },
            columnResize: function (e) {
                // Update the User preference model with new width of column
                self.updateUserPreference(e.column.preferenceColumnName, "resize", e.newWidth);
            },
            enableSwipe: true,
            columns: this.getGridColumns()
        });
    },