headinbeds
5/7/2014 - 9:13 AM

Selecting with drag n’ drop

Selecting with drag n’ drop

$(function() {
  $("ul.droptrue").sortable({
    connectWith: 'ul',
    opacity: 0.6,
    update : updatePostOrder
  });

  $("#sortable1, #sortable2").disableSelection();
  $("#sortable1, #sortable2").css('minHeight',$("#sortable1").height()+"px");
  updatePostOrder();
});

function updatePostOrder() { 
  var arr = [];
  $("#sortable2 li").each(function(){
    arr.push($(this).attr('id'));
  });
  $('#postOrder').val(arr.join(','));
}