fires when the scroll changes its position
pos | number | the scroll position |
var myScroll = new webix.ui.vscroll({
container:"scroll_here",
scrollWidth:800
});
myScroll.attachEvent("onScroll",function(pos){alert(pos)});
Back to top