gpt4 book ai didi

ExtJS 5 从对象创建动态面板

转载 作者:行者123 更新时间:2023-12-01 13:49:23 25 4
gpt4 key购买 nike

假设我有对象

var obj = {
xtype: 'panel',
title: 'other panel'
}

我想从中获取动态面板。我想要这样的东西:

var obj = {
xtype: 'panel',
title: 'other panel'
}
var panel = Ext.create(obj); //not work of course

然后绑定(bind)事件

panel.on('added', function(){console.log('hello world'});

这怎么可能?

最佳答案

尝试使用 Ext.widget,例如:

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

关于ExtJS 5 从对象创建动态面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33081925/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com