Chen Zhang

Results 5 comments of Chen Zhang

This feature request is related to this thread on discourse: https://discourse.holoviz.org/t/reorder-elements-in-accordion-by-drag-and-drop/4224?u=kedokudo

Also, I believe the solution should something in line with a `javascript draggable div`

Here is a quick example implemented with `js` Dummy html page ```html ``` example `js` func ```js var list = document.getElementById('list') var base, randomized, dragging, draggedOver; const genRandom = (array)...

> Hi @KedoKudo > > > > You example could also be seen as a general list container similar to column, in which you can put anything for the user...

@MarcSkovMadsen I tried the grid stack with the draggable option with the following demo ```python import panel as pn from panel.layout.gridstack import GridStack pn.extension('gridstack') gstack = GridStack( # sizing_mode='stretch_both', ncols=1,...