1、當前對象的父對象(上級對象)
this.ownerCt:
2、當前對象的下一個相鄰的對象
this.nextSibling();
3、當前對象的上一個相鄰的對象
this.previousSibling();
4、當前容器中的第一個子對象
this.get(0); (這個好像在Ext6.0不能用了,我用着不好使)
this.items.first();
5、當前容器的末了一個子對象
this.items.last();
6、查找當前對象的一切上級婚配的容器
this.findParentByType(String xtype)
7、查找當前對象的一切下級婚配的組件
this.findByType(String xtype)
8、向上婚配查找組件
this.up("xtype")
9、向下婚配查找組件
this.down("xtype")
10、婚配恣意組件(經常使用)
Ext.ComponemtQuery("#id")
Ext.ComponemtQuery("xtype")
Ext.ComponemtQuery("xtype")