onViewMoveEnd

fires when view has stopped moving

void onViewMoveEnd();

Example

window.attachEvent("onViewMoveEnd", function(){
    //code
});

Details

The event does not have any parameters, but you can always get view coordinates via its getNode method that returns view HTML:

var top = window.getNode().offsetTop;
var left = window.getNode().offsetLeft;
See also
  • API
  • Articles
  • Back to top
    Join Our Forum
    We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
    If you have not checked yet, be sure to visit site of our main product Webix javascript ui components library and page of javascript window product.