JBlinten
19 Apr 2012, 6:18 PM
Is it possible to use a simple text array (such as ["aaa","bbb"] ) as the store for a combobox in Architect? I have tried the following, but get errors in Ext.define.bindStore.
{
xtype: 'combobox',
id: 'statusWell',
fieldLabel: 'Well Status',
store: '["aaa", "bbb"]'
},
This works great in ExtJS with an xtype: 'combo'.
{
xtype: 'combobox',
id: 'statusWell',
fieldLabel: 'Well Status',
store: '["aaa", "bbb"]'
},
This works great in ExtJS with an xtype: 'combo'.