2012-09-12 65 views
0

我有一個組合框和存儲綁定到它:如何獲得店名勢必組合框在ExtJS的4.1

{ 
    name: 'month', 
    store: 'Months', 
    displayField: 'month_name', 
    valueField: 'month_id', 
    value: '01', 
}, 

如何獲得商店的名字嗎?我需要得到Months字符串。

我試圖使用combobox.getStore().getName()但這種方法是靜態的,我得到Object [object Object] has no method 'getName'錯誤。

回答

1

查看商店的storeId屬性。所以:

combobox.getStore().storeId 
+0

真棒,男人。謝謝! –