Can Ext JS 4 support multiple selectors for event handling?
I understand that in JQuery, you can achieve this by using the following syntax:
$('.selector1,.selector2').click(function(){
//..
});
However, I attempted to use a similar method in Ext JS 4 and it appears to not be functioning properly.
Any assistance would be greatly appreciated. Thank you!