我的 Kendo UI 网络网格有问题。一旦我的网格中有多行文本,滚动就无法正常工作。当我用鼠标滚轮或滚动条向下滚动时,它不会平滑滚动并且会抖动。
我正在使用带有 xml 数据源的虚拟滚动,只要有足够的文本空间,一切都会顺利进行。一旦它开始包装,我就会遇到这个问题。
在此视频中,您可以了解我的意思:http ://www.youtube.com/watch?v=2Q9CdsS1C24
$("#table").kendoGrid({
sortable: true,
selectable: "row",
dataSource: {
serverPaging: true,
serverSorting: true,
pageSize: 50,
transport: {
read: {
url: gurl,
dataType: "xml"
}
},
schema: {
type: "xml",
data: "/response/update/tabelle/satz",
total: "/response/update/anzahl/text()",
model: {
fields: {
anschrift: "anschrift/text()"
}
}
}
},
scrollable: {
virtual: true
},
columns:[ {
field: "anschrift"
}]
});