I need to change the width of the item while dragging from the sortable lists.
Here am using below jquery
$(function() {
$( ".dropfalse" ).sortable({
connectWith: ".dropfalse",
revert: true,
tolerance: 'pointer'
}).disableSelection();
$('#sortable1 li').draggable({
connectToSortable: ".dropfalse",
helper: "clone",
});
});
while dragging you can modify the CSS using $(“selector”).css(“property”,”value”);