-
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): Autocomplete on Safari #3999
Conversation
Safari losses input's text highlighting after invalidation of the ComboBox web component. In order to restore the highlighting we need to duplicate the highligh functionality onAfterRendering
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.
It still works a bit weird on Safari. Fast typing users will struggle with the autocompletion. In general, looks better than before but not perfect. We can discuss this on a meeting and see if we can do anything else here.
Unfortunately, it's not the perfect solution, but to be honest, I do not forsee any better implementation. Safari (the new IE :D ) is quite slow and re-rendering of a component is obvious for the end-user. |
Safari losses input's text highlighting after invalidation of the ComboBox web component. In order to restore the highlighting we need to duplicate the highligh functionality onAfterRendering
In chrome, when there is an autocompleted value for example if the user has entered a "Argen" and the value is autocompleted the word there is a following strange "tina" announcement of the autocompleted text. |
Safari losses input's text highlighting after invalidation of the ComboBox web component. In order to restore the highlighting we need to duplicate the highligh functionality onAfterRendering
* fix(ui5-combobox): Autocomplete on Safari Safari losses input's text highlighting after invalidation of the ComboBox web component. In order to restore the highlighting we need to duplicate the highligh functionality onAfterRendering * fix(ui5-combobox): Autocomplete on Safari Safari losses input's text highlighting after invalidation of the ComboBox web component. In order to restore the highlighting we need to duplicate the highligh functionality onAfterRendering * fix(ui5-combobox): Autocomplete on Safari Safari losses input's text highlighting after invalidation of the ComboBox web component. In order to restore the highlighting we need to duplicate the highligh functionality onAfterRendering
This reverts commit 55b7ed4.
Safari losses input's text highlighting after invalidation of the ComboBox web component.
In order to restore the highlighting, we need to duplicate the highlight functionality onAfterRendering
Fixes: #3680