onViewMove of ui.multisuggest, Events Webix Docs
fires while view is moving
void onViewMove(object pos,Event e);
pos
Example
window.attachEvent("onViewMove", function(pos, e){
//code
});
Details
Position object (pos) contains coordinates:
- pos.x - horizontal offset;
- pos.y - versical offset.
The event fires each time the view is moved to the new position, so you'll have multiple move events during the view moving.
See also
API
Articles