關於Extjs獲取容器和元素的方法

一、當前對象的父對象(上級對象)

this.ownerCt:

二、當前對象的下一個相鄰的對象

this.nextSibling();

三、當前對象的上一個相鄰的對象

this.previousSibling();

四、當前容器中的第一個子對象

this.get(0); (這個好像在Ext6.0不能用了,我用着很差使)
this.items.first();

五、當前容器的最後一個子對象

this.items.last();

六、查找當前對象的全部上級匹配的容器

this.findParentByType(String xtype)

七、查找當前對象的全部下級匹配的組件

this.findByType(String xtype)

八、向上匹配查找組件

this.up("xtype")

九、向下匹配查找組件

this.down("xtype")

十、匹配任意組件(經常使用)

Ext.ComponemtQuery("#id")
Ext.ComponemtQuery("xtype")
Ext.ComponemtQuery("xtype[title="..."]")
相關文章
相關標籤/搜索