sosamv
2 Jun 2010, 6:42 AM
Hi! I need to keep track of mouse clicks in my app and I'm adding a click event listener to the document i.e.
Ext.get(document).on({
click : function(event){
console.log(event);
}
});
All of the components of my app delegate the event to document but the TreePanel, the containerclick event is not bubbling, how can i do that so it reach the document?
Thanx
Ext.get(document).on({
click : function(event){
console.log(event);
}
});
All of the components of my app delegate the event to document but the TreePanel, the containerclick event is not bubbling, how can i do that so it reach the document?
Thanx