Sort multiple selected items in jQuery sortable?

前端 未结 2 793
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-04 22:14

I\'m trying to select more than one item in a jQuery sortable set and then move the selected items around together.

Here\'s my weak beginning of an atte

2条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-04 22:42

    Modifying my answer here (according to your HTML and CSS) :

    1. Select items to sort
    2. Create a custom helper
    3. Hide the selected items until sort is done
    4. Resize the helper and placeholder according to the selection
    5. Manually detach selected items from the current position and attach them to the new position after sort
    6. Show the hidden items (undo step 3) after step5

      $(function () {
        $('.container').on('click', 'div', function () {
          $(this).toggleClass('selected');
        });
      
        $(".container").sortable({
          revert: true,
          helper: function (e, item) {
              if (!item.hasClass('selected')) item.addClass('selected');
              var elements = $('.selected').not('.ui-sortable-placeholder').clone();
              var helper = $('
      '); item.siblings('.selected').addClass('hidden'); return helper.append(elements); }, start: function (e, ui) { var elements = ui.item.siblings('.selected.hidden').not('.ui-sortable-placeholder'); ui.item.data('items', elements); var len = ui.helper.children().length; var currentHeight = ui.helper.height() var itemHeight = ui.item.height() + 32; // 32 = 16x2 padding ui.helper.height(currentHeight + (len * itemHeight)) ui.placeholder.height((len * itemHeight)) }, receive: function (e, ui) { ui.item.before(ui.item.data('items')); }, stop: function (e, ui) { ui.item.siblings('.selected').removeClass('hidden'); $('.selected').removeClass('selected'); } }); });

    Updated Fiddle

提交回复
热议问题