scroll

fires on scrolling a grid

void scroll(object coords);
coordsobjectan object with new top and left coordinates

Example

pivot.grid.events.on("Scroll", function({top,left}){
    console.log("The grid is scrolled to "+top,left);
});

Details

Related sample:  Grid events

Back to top