live_select icon indicating copy to clipboard operation
live_select copied to clipboard

Dynamic (multi)selection field for LiveView

Results 22 live_select issues
Sort by recently updated
recently updated
newest added

Hi, When creating a new record everything works fine. However, when I try editing a record with live_select it will override me on every keypress and lose focus. Any idea...

If I have a form with two fields, `a` and `b` where `b` is a live_select set to "Foo", value "bar". Then when I edit `a`, `b` changes to `bar`....

This is based off #63 this is why it has both changes. This allows running a function against selected values to keep/discard items. This is the motivation behind this change:...

This is motivated by our need to allow the user to add a preset list of values to a selection group at any moment without replacing already selected values. This...

Right now, the menu closes when a selection is made, and also when there's a mouse click outside anywhere on the screen. We need two new options: `close_menu_after_selection`: Defaults to...

Define a callback to send updated options to the LiveView or Component where LiveSelect component is initialized.

If there is a lot of options for the select, it would be very helpful to be able to lazy load when user scrolls through the dropdown. Is it currently...

Hi! First of all, thanks a lot for your work, it's great! I wanted to create a dynamic hierarchical LiveComponent wrapping LiveSelect. The problem I have is that when an...

First off I would like to say great job on the library, it is extremally useful. I had a question around testing when being used within a LiveView component. While...