-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(ui5-combobox): enable setting value programatically #3253
Conversation
The component's desired functionality works and I have no comments on the code. You could add a test testing the fixed behaviour |
BREAKING CHANGE: filter value property is removed. FIXES: #2233
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed excessive firing of "change"
Screen.Recording.2021-05-28.at.10.22.25.mov
should be good now. |
When you have a selected item/value, the change event is fired as many times as the "ENTER" key is pressed even without changing the value/item. |
If you type a letter to show suggestion, for example "A" then click on it with the mouse, change is not fired, neither on click or if enter is pressed after that. |
BREAKING CHANGE: filter value property is removed. FIXES: #2233
Users can now set value programatically.
filterValue
property should not be used anymore.value
property represents the "live" value of theui5-combobox
.Change and Input events continue to fire as before, so users can track values changes.
BREAKING CHANGE: filter value property is removed.
FIXES: #2233