Documentation

onAfterScroll

occurs when some webix view has been scrolled

void onAfterScroll(object pos ){ ... };

Parameters

pos objectobject with two values: e - horizontal scroll offset and f - vertical scroll offset

Example

webix.attachEvent("onAfterScroll", function(pos){
    //your code here
});

Back to top