Kendo ui 剑道UI ListviewControl

Kendo ui 剑道UI ListviewControl,kendo-ui,Kendo Ui,是否可以像在网格中一样激活虚拟滚动列表视图控件而不是分页?我试过了,但没用 var options = { autoBind : true, dataSource : kendoDataSource, selectable: true, template: function (record) { var tmpl

是否可以像在网格中一样激活虚拟滚动列表视图控件而不是分页?我试过了,但没用

        var options = {
                autoBind : true,
                dataSource : kendoDataSource,
                selectable: true,
                template: function (record) {
                    var tmpl = kendo.template(m_DataSet.getReadTemplate(record));
                    return tmpl(record);
                },
                filterable: {
                    field : "ID"
                },
                scrollable: {
                    virtual: true
                },
                serverPaging: true,
                edit : function (e) {
                    $(e.item).find("input:eq(0)").focus();
                }
            };

$(m_ListViewItemTag).kendoListView(选项)

剑道UI列表视图不支持虚拟滚动