jQuery UI Sortable, how to determine current location and new location in update event?

后端 未结 6 2100
太阳男子
太阳男子 2020-12-13 08:27

I have:

  • item 1
  • item 2
  • item 3
相关标签:
6条回答
  • 2020-12-13 09:04

    You have several possibilities to check the old and the new position. I would put them into arrays.

    $('#sortable').sortable({
        start: function(e, ui) {
            // puts the old positions into array before sorting
            var old_position = $(this).sortable('toArray');
        },
        update: function(event, ui) {
            // grabs the new positions now that we've finished sorting
            var new_position = $(this).sortable('toArray');
        }
    });
    

    And you can then easily extract what you need.

    0 讨论(0)
  • 2020-12-13 09:10
    $('#sortable').sortable({
        start: function(e, ui) {
            // creates a temporary attribute on the element with the old index
            $(this).attr('data-previndex', ui.item.index());
        },
        update: function(e, ui) {
            // gets the new and old index then removes the temporary attribute
            var newIndex = ui.item.index();
            var oldIndex = $(this).attr('data-previndex');
            $(this).removeAttr('data-previndex');
        }
    });
    
    0 讨论(0)
  • 2020-12-13 09:13

    When the update function is invoked the ui.item.sortable has not been updated, however the UI element has visually moved.
    This allows you in the update function to get old position and new position.

       $('#sortable').sortable({    
            update: function(e, ui) {
                // ui.item.sortable is the model but it is not updated until after update
                var oldIndex = ui.item.sortable.index;
    
                // new Index because the ui.item is the node and the visual element has been reordered
                var newIndex = ui.item.index();
            }    
    });
    
    0 讨论(0)
  • 2020-12-13 09:20

    This works for me,

    $('#app').sortable({
        handle: '.handle',
    
        start: function(evt, ui){
            $(ui.item).data('old-ndex' , ui.item.index());
        },
    
        update: function(evt, ui) {
            var old_index = $(ui.item).data('old-ndex');
            var new_index = ui.item.index();
    
            alert('old_index -'+old_index+' new index -'+new_index);
    
        }
    });
    
    0 讨论(0)
  • 2020-12-13 09:21

    I was looking for an answer to the same issue. based on what Frankie contributed, I was able to get both the start and end "orders". I had an issue with variable scope using the var, so I just stored them as .data() instead of local vars:

    $(this).data("old_position",$(this).sortable("toArray"))
    

    and

    $(this).data("new_position",$(this).sortable("toArray"))
    

    now you can call it up like this (from the update/end functions):

    console.log($(this).data("old_position"))
    console.log($(this).data("new_position"))
    

    Credit still goes to Frankie :)

    0 讨论(0)
  • 2020-12-13 09:28

    This worked for me

    $('#sortable').sortable({
    start: function(e, ui) {
        // puts the old positions into array before sorting
        var old_position = ui.item.index();
    },
    update: function(event, ui) {
        // grabs the new positions now that we've finished sorting
        var new_position = ui.item.index();
    }
    });
    
    0 讨论(0)
提交回复
热议问题