views:

463

answers:

3

Question for YUI experts...

I have a table and I've made each cell of the first row draggable by proxy. In IE, when the drag proxy is released, the original table cell actually jumps to wherever the release point was. How can I prevent this from happening? Essentially, I want to know where the proxy was dropped and handle my logic from there but I don't want the original to move.

A: 

I'm not really sure if this matters, but what version of IE are you running? Does YUI support it?

icco
A: 

YUI supports all common flavors of major browsers (see support chart)

Rex M
+1  A: 

You have to override the drop-functions, check for

DD::dragOverEvent( )

DD:endDragEvent( )

functions on this reference:

http://developer.yahoo.com/yui/docs/YAHOO.util.DD.html

Joshi Spawnbrood