gpt4 book ai didi

extjs - 从 ExtJs 的组合框中获取完整的模型对象?

转载 作者:行者123 更新时间:2023-12-03 20:00:47 26 4
gpt4 key购买 nike

如果我有一个商店支持的组合框选择,它在 ExtJS 4 下触发一个事件,我该如何获取由该选择表示的完整对象?

最佳答案

一般来说,您可以使用 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...
}
});

关于extjs - 从 ExtJs 的组合框中获取完整的模型对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11569284/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com