ExtJS獲取父子、兄弟容器元素方法

1.當前對象的父對象(上級對象) 
this.ownerCt

2.當前對象的下一個相鄰的對象 
this.nextSibling(); 

3.當前對象的上一個相鄰的對象 
this.previousSibling(); 

4.當前容器中的第一個子對象 
this.get(0); 
this.items.first(); 

5.當前容器的最後一個子對象 
this.items.last(); 

6.查找當前對象的全部上級匹配的容器 
this.findParentByType(String xtype) 

7.查找當前對象的全部下級匹配的組件 

this.findByType(String xtype)
相關文章
相關標籤/搜索