I have a ListView in ExtJs3.1 and I tried to listen for the 'scroll' event. Most of the examples I've seen for controls like panels indicate the following:
panel.body.on ('scroll', function (a, b, c) {// set the logic here});
now the problem with ListView is that it does not have a body attribute, not what I saw in fireBug. I tried adding an event to innerBody in the listView, but obviously this did nothing.
Any help would be greatly appreciated. Thanks
I am sure that I am missing something very basic, but I spent about 2 hours flipping through the Docs and source files.
source share