getCmp方法用来获得一个Ext组件,也就是一个已经在页面中初始化了的Component
或其子类的对象,getCmp方法中只有一个参数,也就是组件的id。
•
getCmp方法其实是Ext.ComponentMgr.get方法的简写形式。
•
Ext.onReady(function(){
var myPanel=new Ext.Panel({
id:“myFirstPanel”,
title:“旧的标题",
renderTo:"hello",
width:300,
height:200
});
Ext.getCmp(" myFirstPanel ").setTitle("新的标题");
});
var myPanel=new Ext.Panel({
id:“myFirstPanel”,
title:“旧的标题",
renderTo:"hello",
width:300,
height:200
});
Ext.getCmp(" myFirstPanel ").setTitle("新的标题");
});