让我说我有对象
var obj = {
xtype: 'panel',
title: 'other panel'
}
我希望从中获得动态面板。 我想要这样的东西:
var obj = {
xtype: 'panel',
title: 'other panel'
}
var panel = Ext.create(obj); //not work of course
然后绑定事件
panel.on('added', function(){console.log('hello world'});
怎么可能?
答案 0 :(得分:3)
请尝试使用Ext.widget
,例如:
var panel = Ext.widget(obj.xtype, obj);