我正在使用Extjs 3.4。我需要像这样设置一个类型前面的组合框: 组合框使用JsonStore,当组合框首次加载到页面上时,我需要预先选择一个值。稍后,用户可以将值更改为其他记录。
combobox.store.on("load",function(){
combobox.setValue(value);
});
但是每次加载组合框时都会设置该值。我只需要在首次加载时设置该值。
提前致谢!
答案 0 :(得分:1)
您可以在父作用域中使用标记(在anon函数之外):
var selectDefault = true;
combobox.store.on("load",function(){
if (selectDefault) {
combobox.setValue(value);
selectDefault = false;
}
});