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

A Laravel Livewire plugin that makes it easy to use Sortable.js

Results 22 livewire-sortablejs issues
Sort by recently updated
recently updated
newest added

add multiDrag option has no effect

enhancement

Fixed the `handle` attribute **Multiple draggable groups with draggable items** example: Inside the list of draggable items, the `wire:sortable-group.handle` needs to be used. Currently, the `wire:sortable.handle` attribute is used which...

![image](https://user-images.githubusercontent.com/23504693/155104864-b4bdb9c4-91c2-472b-a015-e7618910a5eb.png) Right now it is possible to swap from one group to a other group but what about, making from a group child a new group? i din't see any...

How to get the group parent after dragging into another group? ```php [ [ 'order' => 1, // order of group (starts at 1, not 0) 'value' => 20, //...

Dear all, Many thanks for this great package. I have the this code : ` @foreach($data['structure'] as $i => $section) {{ __('Section').' : '.$section['name'][app()->getLocale()] ?? __('Undefined') }} @foreach($section['fields'] as $j...

Dear all, Many thanks for this great and very useful package. I have 2 questions: 1) Is it possible to implement dragging of group of items ? 2) When moving...

I'm using the plugin as follows: ``` ... ... ... ... ``` But I still can drag the whole line on each td element, also if I'm for example in...

drag item can't following scrolling element div, how to fix this issue ? ```js @foreach ($sub_menu_list->display_product as $product) {{ $product->title }} Remove @endforeach ```

Say I have this hirearchy. - Option A - Option B - Option C - Option D I can freely drag option D into A and B and C inbetween...

When I use this instead of `livewire-sortable` on the same page as AlpineJS it clashes and throws lots of errors on page load. Has anyone else experienced this and/or found...