如何为 angular 在 kendo ui 中重置组合框的选择

how to reset selection of combobox in kendo ui for angular

当我调用ComboBox的reset方法时,文本将被修改为空值,但选择没有改变。任何人都可以提出一些建议来提前解决problem.Thanks。

如果在(selectionChange) 函数中使用,函数重置将不起作用。 但是当您在其他代码部分使用该方法时,该方法工作正常。 太棒了!

selectionChange(val: any): void {
  this.combo.reset(); // doesn't work
}
resetComboBox(): void {
  this.combo.reset(); // work fine
}