I have a ComboBox Control:
<ext:ComboBox id="comboDatabase"></ext:ComboBox>
In my code I populate the ComboBox Store by:
comboDatabase.Store.Primary.DataSource = dbList
comboDatabase.Store.Primary.DataBind()
However, in my javascript, when I do comboDatabase.getStore().data.items
, it returns nothing.
Any idea why? Thanks in advance.