You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The change event is not triggered if the text() method is used, and when the Clear button is clicked to clear the selection. The change event is properly triggered in the same scenario, but if the value() method is used instead of the text().
Reproduction of the problem
Use the following implementation:
<inputid="combobox"/><script>$("#combobox").kendoComboBox({dataSource: ["Apples","Oranges"],change: function(e){console.log("change triggered")}});varcombobox=$("#combobox").data("kendoComboBox");combobox.text("Apples");// if value is used - the change event is triggered</script>
Run the above code in dojo. Then hit the clear button in the input of the widget.
Current behavior
The change event is not triggered
Expected/desired behavior
The change event should get triggered because an item with the same text exists and it is selected. The change event will trigger if the value() method is used
Workaround
The change event is properly triggered in the same scenario, but if the value() method is used instead of the text().
Environment
Kendo UI version: 2019.2.619
Browser: [all]
The text was updated successfully, but these errors were encountered:
Bug report
The change event is not triggered if the text() method is used, and when the Clear button is clicked to clear the selection. The change event is properly triggered in the same scenario, but if the value() method is used instead of the text().
Reproduction of the problem
Use the following implementation:
Run the above code in dojo. Then hit the clear button in the input of the widget.
Current behavior
The change event is not triggered
Expected/desired behavior
The change event should get triggered because an item with the same text exists and it is selected. The change event will trigger if the value() method is used
Workaround
The change event is properly triggered in the same scenario, but if the value() method is used instead of the text().
Environment
The text was updated successfully, but these errors were encountered: