User2041008840 posted
How do i update database table after performing drag and drop using jquery.
i am using asp.net core this code is in cshtml code.
this is my code -
$(function () {
$(".deal-card").draggable({ helper: 'clone' }); //{ helper: 'clone' }
$(".stage-container").droppable({
accept: ".deal-card",
drop: function (ev, ui) {
var droppedItem = $(ui.draggable); //.clone()
$(this).append(droppedItem);
}
});
});