To capture all events for an object, various search queries say that all I need to do is use:
Ext.util.Observable.capture(object, function(stuff){console.log(stuff);});
But I get the error:
Ext.util.Observable.capture is not a function
Is there something I'm doing wrong?
Buddy source
share