I'm very confused which one I need to use for grep object between up() down() and Ext.getCmp(ID).
For me, it is easier that define ID to object and retrieve the object by Ext.getCmp('ID') and the code looks more clean.
For example:
console.log(this.up('panel').up('panel').down('grid'));
console.log(Ext.getCmp('myPanel'));
which one is better for performance?