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(オプション);

4

1 に答える 1