ソート可能なリストを作成しようとしていますが、jQueryのソート可能関数はリストの要素の代わりにリスト全体を移動します。ここでSortableリストは、Jqueryで各リスト要素の代わりにリスト全体を移動します
<ul class="list-group" id="sortable">
<form class="form-horizontal" role="form" method="POST" id="priority" action="{{ url('somewhere') }}">
{{csrf_field()}}
@foreach($itemsas $item)
<li class="list-group-item active">{{$item->name}}
<input type="hidden" name="priority" value="{{$item->id}}">
</li>
@endforeach
</form>
</ul>
は私のjavascriptです:
$(function() {
$("#sortable").sortable();
});
私はスニペットを作成しますが、私はすべてのブレード支持snipetサイトを知りません。ここでは、やや正確DEMO