-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Dragging toolbar item in out in doesn't honour gs-w attribute sizes #2667
Comments
I'm having the same issue as well! |
thanks for the report. When leaving the grid we try to find if it came from another grid and restore that but this appears to mess the toolbar... |
@BussiGiu i ran into the same issue as you, first time it gives 1x1 next time a 2x1. My solution was to change the setupDragIn to contain definitions for the widget like so |
@AndreasHerss oh yeah, forgot about this bug. I totally revamped how drag&drop from toolbar works in V11 and added the ability to have WidgetItem assigned to toolbar items, given you full power (since gs- attributes are limited in choices). |
Subject of the issue
I have a toolbar with one widget and attributes set to
gs-w="1"
andgs-h ="1"
.When I try to drag and drop the widget inside the grid it usually works fine, but if I accidentally first drag it inside and outside of the grid and then drop it inside, the widget ends up occupying a space that doesn't honour the width and height attributes.
Also, the attributes set into the HTML disappear and from now on, they are completely ignored.
I'm using Gridstack in Angular and the widget toolbar implements
BaseWidget
class but I also managed to reproduce the issue without Angular, so I don't think Angular makes any difference here.Your environment
Steps to reproduce
I recreated the bug in this demo: https://jsfiddle.net/gusn6cvy/11/
And here's is a video of the effect:
gridstackToolbarSizeBug.mov
Expected behaviour
Dragging a widget from a toolbar should create a widget on the grid that maintains the original attributes (
gs-w
andgs-h
) even if it's dragged inside and outside of the grid many times.The text was updated successfully, but these errors were encountered: