Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建大约 8 个组合框。我不想是静态的,应该使用 Ext-JS 动态调用它。
这段代码动态地创建了几个组合框。我希望这就是你要找的。
for (var i=0; i < 8; i++) { Ext.create('Ext.form.ComboBox', { fieldLabel: 'Combobox '+i, store: ['Option1','Option2'], //better to use a dynamic store renderTo: Ext.getBody() }); };