-
Notifications
You must be signed in to change notification settings - Fork 127
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
Cannot resize when adding custom resize handles. #32
Comments
Having the same issue. I don't have any events bound to the child element, so it seems something is stopping event propagation from the child elements (not sure). @skamansam Did you ever figure out a resolution? |
I take it back, it looks like the event is bubbling properly, but there is this on line 40 of multipane.js: |
I've got a workaround for anyone running into this issue in the meantime... First, add a ref to the multipane-resizer component. Then, give the child elements a listener for the
Lastly, create the handler to send the event as the parent element instead of the child:
|
I am trying to customize my resizer by adding icons as visual indicators. This works surprisingly well, but when the icons are clicked on, nothing happens - the resize doesn't work.
I am using
@mdi/font
(for the icons) and Vuetify, all latest versions. My project is pretty much clean - I just started it today.Here is my code:
The text was updated successfully, but these errors were encountered: