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
Question:
Given these circumstances I seem to be unable to get scrolling to work:
As far as I know I need to set overflow on C due to limitations regarding overflow scrolling within flex/grid layouts when not setting width/heights explicitly. But if I do that, react-movable doesn't seem to be able to pick up the scrolling necessities (see previous example)
I also tried to include C within L.renderList which solves the scrolling issue but when I try to drag an item the whole list is displayed as movable object --> https://codesandbox.io/s/icy-fire-s3g2r
I was facing the same issue, and I put the "overflow" styles on the renderList={<div style={{overflow_styles_go_here}}/>} instead of putting the styles on the parent element wrapping the <List/>. In my local env its working, but its a little too "scroll happy" :)
I'm having trouble to get scrolling within nested containers to work properly and I hope that you can point me in the right direction.
Description:
C
C
contains the actual listL
which manages/includes the movable list entriesA simplified example can be found here: https://codesandbox.io/s/snowy-glitter-mwibr
(With explicit size for display of the main container)
Question:
Given these circumstances I seem to be unable to get scrolling to work:
As far as I know I need to set
overflow
onC
due to limitations regarding overflow scrolling within flex/grid layouts when not setting width/heights explicitly. But if I do that, react-movable doesn't seem to be able to pick up the scrolling necessities (see previous example)I also tried to include
C
withinL.renderList
which solves the scrolling issue but when I try to drag an item the whole list is displayed as movable object --> https://codesandbox.io/s/icy-fire-s3g2rThe last thing I tried was setting
overflow
onL
directly but then overflow is not working at all --> https://codesandbox.io/s/youthful-kalam-xowytAny help regarding the correct practice would be much appreciated as I really enjoy this simple to use but effective package!
Thanks.
The text was updated successfully, but these errors were encountered: