Necesito ayuda para hacer que el elemento arrastrable permanezca en la nueva posición cuando se suelta, traté de ver sus ejemplos pero realmente no puedo entenderlo. Aquí está el código:
$(function () { 'use strict' // Make the dashboard widgets sortable Using jquery UI $('.connectedSortable').sortable({ placeholder: 'sort-highlight', connectWith: '.connectedSortable', handle: '.card-header, .nav-tabs', forcePlaceholderSize: true, zIndex: 999999 }) $('.connectedSortable .card-header').css('cursor', 'move') // jQuery UI sortable for the todo list $('.todo-list').sortable({ placeholder: 'sort-highlight', handle: '.handle', forcePlaceholderSize: true, zIndex: 999999 }) })