vote up 0 vote down star

I'm using JQuery's Sortable (not Draggable or Droppable) and I was wondering how I could highlight the potential drop areas (using CSS) that a user has when the user has begun sorting. Something like

http://www.shopdev.co.uk/blog/sortables.html

but with highlighting the area in which the item can be dropped.

Thank you!

flag

52% accept rate

2 Answers

vote up 0 vote down check

Use the Placeholder option to define a css class to apply to the default white space

  placeholder: 'someClass'

Demo here

You can also use the change event and override the inline visibility hidden that the sortable applies to the placeholder.

See quick demo here

$("#sortable").sortable({
    change: function(event, ui) {
      ui.placeholder.css({visibility: 'visible', border : '1px solid yellow'});
    }
});
link|flag
Both of you were helpful, but your answer was more in-depth and helpful. Thank you once again - sometimes the simplest answers are the hardest to see. – Rio Aug 27 at 17:28
vote up 1 vote down

I might be misunderstanding but is the "drop placeholder" demo what you're looking for?

http://jqueryui.com/demos/sortable/#placeholder

link|flag

Your Answer

Get an OpenID
or

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