我需要有关重置combobox
的帮助,我尝试使用以下代码:
change: function (this, newValue, oldValue) {
console.log(NewValue)
}
答案 0 :(得分:0)
您可以按照以下方式进行操作:-
change: function (combo, newValue, oldValue) {
console.log(NewValue);
combo.suspendEvents();
combo.reset();
combo.resumeEvents();
}