0

是否可以像在网格中那样激活虚拟滚动 ListView 控件而不是分页?我试试这个但不工作

        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(options);

4

1 回答 1

0

Kendo UI ListView 不支持虚拟滚动。

于 2013-10-25T07:11:25.253 回答