Extjs 对象访问

13年前
this:一般指当前对象
this.ownerCt:当前对象的父对象
this.nextSibling();当前对象的下一个相邻的对象
this.previousSibling();当前对象的上一个相邻的对象
this.get(0);//当前容器中的第一个子对象
this.items.first();同上
this.items.last();当前容器的最后一个子对象
this.findParentByType(String xtype);//根据xtype属性把所有父亲对象返回为数组