-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
onChange event is fired twice when you change value after using search #293
Comments
I'd also like to know how to stop this if possible. Im using it with livewire and allowing multiple selections. When you select an option after searching it is breaking the rule that selections should be an array as on the first change event the value is a string (the search term), and immediately after that the change event is triggered again with the selected values as an array. |
I have made a hotfix for it. I'm using this with jQuery event listeners.
|
@sa-si-dev could you help clarifying this? |
This is still causing some issues. When you search and hit enter, the value passed is the string you searched, and not the option you selected. @sa-si-dev Could you help please 🙏 |
I can confirm the search value is being passed back as the value before the selected value/s. I have this setup as a Livewire component and have managed to ignore the search value for now, but as I'm not using onServerSearch there's no need for the search value to be passed back at all. |
@rich1888, I am also using this as a livewire component but I have it setup as a reusable component using livewire/livewire#4725 as my starting point. Technically, the search input is changing, but I have tweaked the x-on:change attribute to only set the model value (and as a result, trigger a livewire update) if the className is "vscomp-ele pop-comp-ele pop-comp-active" or "vscomp-ele pop-comp-ele": original: tweak: I added console.log(event); into the attribute while testing to see all available attributes: |
this is a temporary solution to solve this problem:
|
To recreate this bug.
Now when you search a value and select it the change event is fired twice
The text was updated successfully, but these errors were encountered: