PDA

View Full Version : bodyscroll event for new View class



mscifo
7 Nov 2006, 9:45 AM
Is there a bodyscroll or scroll event for the new YAHOO.ext.View() class? I can't seem to find it.

Matt

jack.slocum
7 Nov 2006, 2:45 PM
Since it's just a single element, to keep it lightweight I didn't create a bunch of CustomEvents. Just listen on the element.

myView.el.on('scroll', ..);

I will add a "getEl()" function so you don't have to access it directly.