Threaded View
-
21 Feb 2012 1:40 PM #1
Answered: What is equivalent of ST1 Observable.capture method?
Answered: What is equivalent of ST1 Observable.capture method?
What is the equivalent in ST2 of the ST1 Ext.util.Observable.capture call? I made use of this method quite a bit in debugging to see all events coming off an object and the timing of the calls. If possible I would like to continue using it.
-
Best Answer Posted by mitchellsimoens
There isn't one built in. All the capture function did was create an interceptor to the fireEvent function. So what you could do is override Ext.mixin.Obervable hook into the fireEvent and fireAction methods:
Code:Ext.define('Override.mixin.Observable', { override : 'Ext.mixin.Observable', fireEvent : function(eventName) { console.log(eventName); this.callOverridden(arguments); }, fireAction : function(eventName) { console.log(eventName); this.callOverridden(arguments); } });


Reply With Quote