Replies: 1 comment 7 replies
-
This is a bit vague. Can you post an actual code snippet of what you would like to do and why it's currently not working? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using a custom component to render the selected tags. It has its own
isRemovable
property and styling associated with it. I mean technically I could just copy the styling into the<Multiselect>
style props, but for sake of keeping the same source of truth, let's assume I want to keep my own component to render the tag.I am using Multiselect's
on:remove
event listener to trigger the form submission action. Is there a way I could do that from the child slot component instead? It does have its ownon:remove
, detail of which I can use to submit the form, but I'm not sure if I can account for the instant UI feedback how it's handled in the<Multiselect>
, if that makes sense. Multiselect's event has much more in it.Thanks
Beta Was this translation helpful? Give feedback.
All reactions