lengjuncc
15 Feb 2012, 6:50 PM
var p= Ext.create('widget.panel',{
items: [
Ext.create('widget.window', {
itemId: 'w',
constrain: true,
})
]
});
I can get the window by "p.getComponent('w')" in Extjs3.x, but it not work in Extjs4.x.
How can I get the window by its container in Extjs4.x ?
items: [
Ext.create('widget.window', {
itemId: 'w',
constrain: true,
})
]
});
I can get the window by "p.getComponent('w')" in Extjs3.x, but it not work in Extjs4.x.
How can I get the window by its container in Extjs4.x ?