[Proto-Scripty] Re: Sortable.create and onHover

2009-08-10 Thread Sebastien
Ok, thanks, but how would you implement my code then? Do I have to overload the whole Sortable.onHover method? If yes, then every new Sortable created will call the onHover method isn't it? I would like it to be called only for this Sortable, not all of them. Thanks for your help, Seb On Aug

[Proto-Scripty] Re: Sortable.create and onHover

2009-08-08 Thread Sebastien
No, I don't need onMouseOver... What I want to do is that when a certain element hovers over one of my Sortable, that Sortable expands (changes class essentially). I understand that Sortable implement Draggables and Droppables under the cover, what I want to do is pass the onHover to the created

[Proto-Scripty] Sortable.create and onHover

2009-08-07 Thread Sebastien
Hi All, I need to capture the onHover event for on a Sortable element. The onHover callback does not work (as far as I tested) for Sortable element, is there a way around this? I can of course make the element also a Droppable, in which case I can work around this restriction, but it is particula