Kendo UI Mobile - 停止滚动条

时间:2013-04-10 17:01:26

标签: listview kendo-ui

无论如何都要停止滚动条?例如,我想允许用户在触摸按钮时返回到特定位置。到目前为止,我的方法是:

// scroll to the top
e.view.scroller.reset();

// scroll to the destination offset
e.view.scroller.scrollTo(0, targetOffset);

问题是,如果滚动条之前是滚动的,它将继续在targetOffset之后滚动,直到它的速度为0。

有人可以帮助我首先停止卷轴的速度吗?

我使用的是JQuery 1.9.1和2013年第一季度的Kendo Mobile版本

1 个答案:

答案 0 :(得分:2)

虽然没有从他们的文档中公开,但我通过将velocity属性设置为0来解决它:

e.view.scroller.yinertia.velocity = 0;