Extjs 3.4 ComboBox:首次加载组合框时如何预选一条记录?
Posted
技术标签:
【中文标题】Extjs 3.4 ComboBox:首次加载组合框时如何预选一条记录?【英文标题】:Extjs 3.4 ComboBox: how to preselect a record when the combobox is first loaded? 【发布时间】:2013-09-19 14:31:35 【问题描述】:我正在使用 Extjs 3.4。我需要像这样设置一个预先输入的组合框: 组合框使用 JsonStore,当组合框首次加载到页面上时,我需要预选一个值。稍后,用户可以将值更改为其他记录。
combobox.store.on("load",function()
combobox.setValue(value);
);
但是每次加载组合框时都会设置该值。我只需要在第一次加载时设置值。
提前致谢!
【问题讨论】:
【参考方案1】:您可以在父作用域(在 anon 函数之外)使用标志:
var selectDefault = true;
combobox.store.on("load",function()
if (selectDefault)
combobox.setValue(value);
selectDefault = false;
);
【讨论】:
以上是关于Extjs 3.4 ComboBox:首次加载组合框时如何预选一条记录?的主要内容,如果未能解决你的问题,请参考以下文章