
Originally Posted by
brk11
I have problems when I enable languageSelection in ExtJS 3.2.1. First, I have to put readOnly:false in language selection combo to be able to select a new language. But then, when buildKeys function is called on select listener of the combo, I get an error at line 396: "this.Languages[this.language] is undefined".
This is a scope problem, but I don't know how can I solve it!
At the this.language = ... line change
Code:
'select': function(combo, record) {
this.language = combo.value;
this.buildKeys();
},
Voila, language selection under 3.2.1 works again.