For some reason the placeholder for my sortable items is about 10px. All my sortable items have different heights. How can I change the height of each placeholder to match the item being moved?

link|improve this question

Can you post it to jsFiddle ? – Satish May 26 '11 at 15:00
Is this happened when you just drag and drop your item to another place? or the items already have this height after loading the page? anyway take a look here: bugs.jqueryui.com/ticket/4482 and try to workaround as mentioned – Mohammad Jun 7 '11 at 0:02
feedback

4 Answers

up vote 9 down vote accepted
+50

I usually solve this by binding a callback that sets the height of the placeholder to the height of the item being sorted to the start event. It's a simple solution that gives you fine-grained control over how you want your placeholder to be displayed.

$( ".column" ).sortable({
    connectWith: ".column",
    start: function(e, ui){
        ui.placeholder.height(ui.item.height());
    }
});

See updated test case

link|improve this answer
feedback

Have you tried setting the forcePlaceholderSize:true property? Have a read on the jQuery UI Sortable documentation page.

link|improve this answer
i have tried that, but adding true or false makes no difference to my original site which keeps it at 10px high. in this jsfiddle, it resizes correctly, but forceplaceholdersize set to true or false makes no difference. jsfiddle.net/t8gcZ – oshirowanen May 26 '11 at 20:18
@oshirowanen: What browser are you testing it under? – DarthJDG Jun 3 '11 at 16:51
I am testing for IE8. – oshirowanen Jun 4 '11 at 17:15
@oshirowanen: Can you post a link to the code where it's actually broken? – DarthJDG Jun 6 '11 at 8:05
That does work for me. All I had to do was change the CSS .ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; height: 50px !important; } to .ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; } (so remove the height) So @DarthJDG you are right! – JP Hellemons Jul 27 '11 at 13:43
feedback

You can set a style for your placeholder as an option for your sortable.

$( "#sortable" ).sortable({
        placeholder: "ui-state-highlight"
});

And just give that style a height. Hope that works.

link|improve this answer
But won't that fix the height? I need the hight to be the same as the content. – oshirowanen Jun 5 '11 at 11:31
feedback

Are your elements display: block ? Inline elements might make the placeholder not keep the height correctly. Eg. this jsFiddle seems to have a similar problem to the one you described. Adding display: block to the .portlet class fixes it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.