如何在Kendo ui listview中隐藏Paging

时间:2018-02-01 16:47:21

标签: user-interface kendo-ui

如何在kendo ui listview中隐藏分页?我的意思是底页编号和导航不显示

1 个答案:

答案 0 :(得分:2)

不要在数据源中添加寻呼机或设置页面大小。然后,如果您想要滚动,请设置高度和溢出:

var dataSource = new kendo.data.DataSource({
    data: products,
});

$("#listView").kendoListView({
    dataSource: dataSource,
    template: kendo.template($("#template").html())
});

    #listView {
        height: 400px;
        overflow-y: auto;  
    }

DEMO