如果我有一个商店支持的组合框选择,可以在ExtJS 4下触发事件,我该如何获取该选择所代表的完整对象?
答案 0 :(得分:21)
通常,您可以在组合框上使用findRecordByValue
方法:
combobox.on('change', function(combobox, newValue, oldValue) {
// Get the old and the new records.
// NOTE: The underlying store is not guaranteed to
// contain an associated record.
var oldRecord = combobox.findRecordByValue(oldValue);
if (oldRecord) {
// Do something...
}
var newRecord = combobox.findRecordByValue(newValue);
if (newRecord) {
// Do something...
}
});
答案 1 :(得分:6)
在发布我的问题后几乎立即解决了这个问题。
我的问题是我绑定了错误的事件,我使用'更改'而不是'选择'。
选择事件为您提供包含完整对象的记录。