You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there!
First of all, thanks for such a great library! I'm really in love with it. But still, I have some request that, as I see for now, is not possible to implement.
I've walked though the docs and found the restriction called No dimension changes during a drag (also mentioned in Rules. But maybe there is a way to break this rule without consequences? :))
Im trying to build an unusual flexible UI where I need my <Droppable> columns to be resized on hover (with <Draggable already in the hand). Even when I tried to bury Droppable deep inside parent column with overflow:hidden, there is still a wrong behaviour, while the virtual model isn't updated on dragging.
So having a updateDimenions() on onMouseOver of my column would definitely solve my problem.
How about passing some callback from <Droppable> (e.g. provided.updateDimensions()) or somehow from <DragDropContext> that will do that magic?
My example gif (1 Mb)
In this example, my first column has correct behavior, as it's dimensions are still, but 2-4th columns behaves wrong as they where resized while dragging.
I will appreciate for your reply.
The text was updated successfully, but these errors were encountered:
Description
Hi there!
First of all, thanks for such a great library! I'm really in love with it. But still, I have some request that, as I see for now, is not possible to implement.
I've walked though the docs and found the restriction called No dimension changes during a drag (also mentioned in Rules. But maybe there is a way to break this rule without consequences? :))
@alexreardon You spent few months working on dynamically dimensions for internal purposes and also implemented collecting dimensions in async way.
So maybe you could give regular users an ability to force updating dimensions when needed?
Im trying to build an unusual flexible UI where I need my
<Droppable>
columns to be resized on hover (with<Draggable
already in the hand). Even when I tried to buryDroppable
deep inside parent column withoverflow:hidden
, there is still a wrong behaviour, while the virtual model isn't updated on dragging.So having a
updateDimenions()
ononMouseOver
of my column would definitely solve my problem.How about passing some callback from
<Droppable>
(e.g.provided.updateDimensions()
) or somehow from<DragDropContext>
that will do that magic?My example gif (1 Mb)
In this example, my first column has correct behavior, as it's dimensions are still, but 2-4th columns behaves wrong as they where resized while dragging.
I will appreciate for your reply.
The text was updated successfully, but these errors were encountered: