search for: createdraggablelistener

Displaying 2 results from an estimated 2 matches for "createdraggablelistener".

2006 Feb 09
3
Draggables and Droppable performance (tips)
...your object remember to have a dispose() method of some sort for proper cleanup of event handlers and unregistering draggables. Notice, if the element is never moused-over that the "mouseover" listener will never get removed, so you need to handle this condition in your objects. this.createDraggableListener = function() { this.draggable = new Draggable($("someElement"), {...options...} ); //remove this listener once the draggable has been created (no longer needed) Event.stopObserving($("someElement"), "mouseover", this.createDraggableListene...
2006 Jun 15
12
Why such bad performance with IE ?
Regarding DragDrop I am wondering what the deal about Internet Explorer 6 is. My application is near to final and now while testing browsers all but the IE6 are running as supposed to. Any other browser is performing smooth movement while IE compared provides a very bad expirience. I''ve seen some "tuning" infos on this list but they are either outdated or not actually working