Using Firebug, I found jquery.ui will add the class ui-sortable-
placeholder to the drop zone but it's visibility is set to hidden.

Maybe you need to set the sortable init option [forcePlaceholderSize]:

 $("#columnLeft").sortable({
     connectWith: ["#columnRight"],
     placeholder : 'sortableHelper'
     forcePlaceholderSize: 'true',
 }

more info: http://docs.jquery.com/UI/Sortables/sortable#options

DT

On Sep 12, 12:25 am, S Reed <[EMAIL PROTECTED]> wrote:
> In layman terms i need to be able to see where i am placing an object
> in sortable, like on igoogle and bbc homepage.
>
> Here's my CSS:
>
> .sortableHelper {
>         background-color: yellow;
>         opacity: 0.6;
>         z-index:1;
>
> }
>
> And here's my JS:
>
> $("#columnLeft").sortable({
>     connectWith: ["#columnRight"],
>     placeholder : 'sortableHelper'
>
> }
>
> I thought this would show a yellow block where the object is going to
> be dropped, but it doesn't.
>
> I am lost to quite what the placeholder option is meant to do and i
> can't find any example of what it does.
>
> Any help would be greatly appreciated.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to