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