jQuery Sortable Placeholder Height Issue
Today I searched jQuery Sortable Placeholder Height Issue because when I dragged my sortable list the placeholder was shrinking to have a 0 height. It was tough tell where exactly I was moving it to. I needed to get this working or it would drive me crazy. So I tried a couple things before I found a solution. I made sure that there was a height on the element and in my jQuery call I used the options placeholder: ‘ui-state-highlight’ and forcePlaceholderSize:true, none of these things worked. Then I found that you could set the height of the placeholder on the start event of your sortable like this.
$( ".selector" ).sortable({
placeholder: 'ui-state-highlight',
start: function(event, ui) {
ui.placeholder.height(ui.item.height());
}
});
Once I added this code and refreshed, it a beautiful site to see a jQuery sortable placeholder work.
