Max

Results 41 comments of Max

Hi! What is the use-case for this change? When an option is selected/removed, a change event is triggered on the form, right?

Hi sorry my comment wasn't clear: you're already getting a change event in the form when the user selects/deselects an option. I don't see the need for passing a callback...

Hi and thanks for giving some thought to this. Having to account for a hidden input is in fact not ideal when writing tests, I agree. However, your solution only...

workaround to make your test work without having to pass hidden inputs' values separately: ```elixir create_attrs = %{ org_id: 1, first_name: "John", last_name: "Doe", email: "[email protected]", phone_number: "1234567890" } Phoenix.LiveView.send_update(...

Hi @AHBruns and thanks for pointing this out. I agree with your observation, and I'd welcome a PR for this change! Just be aware that I'll be traveling for the...

Thanks for pointing this out. Can you please test the latest main? The behavior should now be as you expect.

Hi @themitigater. You can easily show a "No Data" message anywhere in the view if there are no options available. So I'm guessing that you are asking for an unselectable...

Ok! Then my suggestion would be to add a slot for this. There is already an `:option` slot that you can use to render an entry in the dropdown. Similarly,...

Hi, glad you found the right way to render HTML in the options :) Sure, go ahead and send a PR for the documentation if you feel it can be...

I can confirm that the tags approach doesn't work