Does such a thing exist or will I need to roll my own?
http://api.jquery.com/live/
Description: Attach an event handler for all elements which match the current selector, now and in the future.
Printable View
Does such a thing exist or will I need to roll my own?
http://api.jquery.com/live/
Description: Attach an event handler for all elements which match the current selector, now and in the future.
You achieve it by using the delegate option:
http://docs.sencha.com/ext-js/4-1/#!...od-addListener
Code:Ext.getBody().on('click', function(){
console.log('You clicked foo');
}, null, {
delegate: '.foo'
});
Had not seen the delegate argument, that is perfect - thanks!
Actually, one more quick question - delegate refers to a DOM selector, is there an option or a way to have delegate use ComponentQuery instead?
It would be easy enough to bake that myself, just asking if it's already built in.
Is this alos a viable solution?
Code:Ext.util.Observable.observe(Ext.util.Observable);
Ext.util.Observable.on('click', function(context, event, options) {
// intercept here
});
The equivalent to live would be the controller in the MVC structure.
Otherwise, you could instantiate the EventBus yourself.
Is it possible to have a controller intercept an event? Making assumptions here, but I'm guessing the controller uses event delegation to bind listeners, which means a buttons "handler" will fire first, then the event will bubble up to the body and then call the appropriate delegate, the problem is that I need to fire my override first, then possibly stop propagation.
So far the best way I have found to do this is to observe a class, like "Ext.form.Basic" or "Ext.util.Observable" and listen to their events, like "actioncomplete" or "click" - this lets me run an override first then either cancel propagation or not.
I certainly didn't explain myself properly in my original post and I'm not entirely sure I am now.