I have a ComboBox and store bound to it:
{
name: 'month',
store: 'Months',
displayField: 'month_name',
valueField: 'month_id',
value: '01',
},
How to get store name? I need to get Months string.
I tried to use combobox.getStore().getName() but this method is static and I get Object [object Object] has no method 'getName' error.
Check the store’s
storeIdproperty. So: