ExtJS debug events fired by a component
with following code snipped you can easily observe all events fired by component.
Ext.util.Observable.capture(
Ext.getCmp('CmpId'),
function(e){
console.log(e);
}
);
On firebug console you can now see the names of the fired events .
Tweet This Post
Delicious
Digg This Post
Tags: debug, Ext JS, observe
This entry was posted on Mittwoch, September 30th, 2009 at 23:57 and is filed under Ext JS.
You can follow any comments to this entry through the RSS 2.0 feed.
You can leave a comment, or trackback from your own site.