react-sortablejs icon indicating copy to clipboard operation
react-sortablejs copied to clipboard

React bindings for SortableJS

Results 112 react-sortablejs issues
Sort by recently updated
recently updated
newest added

After I mentioned : ``` {state.map((item) => ( {item.name} ))} ``` It doesn't aligned as expected why?

When group A moves to group B, how do I determine the execution sequence of onRemove and onAdd

I think I found an issue with one condition here: https://github.com/SortableJS/react-sortablejs/blob/48e8780a1c92e071da61a67e95acd8212d906523/src/react-sortable.tsx#L121 My render looks like this (psudo) ```tsx interface Data { columns: string[]; optionalColumns?: string[]; } [..] return ( {optionalColumns?.map(x...

* When i use formik, it's working ok Please use this code below, Put value in the top inpiut and drag it down. ``` const [items, setItems] = useState([ {...

I have tried implementing this package (6.1.4) with React 18, and it looks like the state is not updated property after drop, if the approach is nested. Can someone please...

**Describe the bug** Not actually a bug, more a question - although it could be there is an issue with the Readme.md. In the ready me there is a warning...

**Describe the bug** Unable to sort images when using **Image** component from Next.js but works perfectly on regular "img" tag. The error happens while trying to sort the image on...

```jsx const [localColumns, setLocaleColumns] = useState( mapStateToColumns(columns, columnsState, !!meta.defaultVisible) ) const leftColumns = useMemo(() => { return localColumns .filter((item) => item.visible) .filter((column) => column.fixed === "left") .map((item) => ({ ...item,...

Probably a dumb question, but where can I go to see the source code for the examples: https://sortablejs.github.io/react-sortablejs/