I'm feeling a bit lost trying to figure out which method to use when using grep object - should I go with up(), down(), or Ext.getCmp(ID)?
Personally, I find it simpler to assign an ID to the object and then retrieve it using Ext.getCmp('ID') as it makes the code appear cleaner.
Let's consider this example:
console.log(this.up('panel').up('panel').down('grid'));
console.log(Ext.getCmp('myPanel'));
Which approach would offer better performance?