ExtJS4 のドキュメントに戻って、例の行を 1 行ずつコピーして、どこが間違っている可能性があるかをトラブルシューティングしようとした後、困惑しました。initComponent が不運な操作順序になっている問題を嗅ぎ回っています。
定義されているストアは、1) フィールドに入力されておらず、2) フィールド リスナーから呼び出しを試みた後、未定義であると言われています。
initComponentでストアを定義していますが、
Ext.define('X.view.NewLogWindow', {
extend: 'Ext.window.Window',
xtype:'newlogwindow',
itemId: 'newLogWindow',
width: 300,
height: 140,
modal: true,
title: 'Create Log',
layout: 'fit',
initComponent: function() {
this.monthStore = Ext.create('Ext.data.Store', {
fields : [
{name : 'id', type : 'int'}, {name : 'month', type : 'string'}
],
autoLoad: true,
data : [
{"id" : 0, "month" : "January"},
{"id" : 1, "month" : "February"},
{"id" : 2, "month" : "March"},
{"id" : 3, "month" : "April"},
{"id" : 4, "month" : "May"},
{"id" : 5, "month" : "June"},
{"id" : 6, "month" : "July"},
{"id" : 7, "month" : "August"},
{"id" : 8, "month" : "September"},
{"id" : 9, "month" : "October"},
{"id" : 10, "month" : "November"},
{"id" : 11, "month" : "December"}
]
});
var x = 'fixme';
console.log(this.monthStore);
console.log(x);
this.callParent();
}
次に、フォーム パネルのコンボボックスにストアを次のように割り当てています。
items: [
{
xtype: 'form',
margin: 10,
border: false,
defaults: {allowBlank: false},
items: [
{
xtype: 'combobox',
fieldLabel: 'Log Month',
store: this.monthStore,
queryMode : 'local',
displayField: 'month',
valueField: 'id',
listeners: {blur: function(field)
{
console.log(this.monthStore);
console.log(this.x);
}
}
}
]
}
]
コンソール ロギングからの出力は次のとおりです。
constructor NewLogWindow.js:40
fixme NewLogWindow.js:41
undefined NewLogWindow.js:74
undefined NewLogWindow.js:75
前もって感謝します。