ExtJS 5从对象创建动态面板

时间:2015-10-12 13:06:26

标签: extjs panel

让我说我有对象

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'});

怎么可能?

1 个答案:

答案 0 :(得分:3)

请尝试使用Ext.widget,例如:

var panel = Ext.widget(obj.xtype, obj);