看起来“按加载更多”选项在最新版本的Kendo Mobile UI(2012-q3)上不起作用。我在Galaxy Nexus和iPod上尝试过它。
http://demos.kendoui.com/mobile/listview/press-to-load-more.html
有关修复的想法吗?
答案 0 :(得分:1)
这是一个错误,我们修复了它,修复程序将在下一个内部版本中提供。
作为一种解决方法,您可以在按钮上重新设置事件处理(从演示中获取初始化代码):
var listview = $("#load-more").kendoMobileListView({
dataSource: dataSource,
template: $("#load-more-template").text(),
loadMore: true
}).data("kendoMobileListView");
listview._loadButton
.off("click.kendoMobileListView")
.on("touchend.kendoMobileListView click.kendoMobileListView", $.proxy(listview._nextPage, listview));
这将打破 stopLoadMore 方法,因此最好在更新时获取更新。