dash-draggable icon indicating copy to clipboard operation
dash-draggable copied to clipboard

react-draggable in Python

Results 4 dash-draggable issues
Sort by recently updated
recently updated
newest added

Hey guys @xhlulu @SterlingButters, I have tried to use the dash-draggable and I found a lot of difficulties because the library methods are different now; It seems like the library...

Hi @xhlulu @SterlingButters, awesome dash component! I was wondering if it would be easy to add the `bounds` property per https://www.npmjs.com/package/react-draggable? Would be great to be able to limit the...

This appears to be the case in the following example where deltaX/deltaY properties always take on value of 0: ``` import dash import dash_html_components as html from dash.dependencies import Output,...

help wanted

``` ... dcc.Store(id='position-store', storage_type='session', data={'lastXs': [], 'lastYs': []}), ... # Commit last known position to memory @app.callback( Output('position-store', 'data'), [Input('draggable', 'lastX'), Input('draggable', 'lastY')], [State('position-store', 'data')] ) def remember_position(lastX, lastY, data):...