Draggables.unregister should take an ID argument
Reported by andy k | August 5th, 2008 @ 01:56 PM
If you are creating Draggable objects dynamically (ex: a list of search results where the results can be dragged into another list), and you want to unregister draggable objects when the list changes, you must either have kept a reference to Draggable objects or you must loop through the Draggables.drags array matching element IDs in order to be able unregister.
It would be great if you could call Draggables.unregister(id) as well as Draggables.unregister(draggable).
Change...
drags:[] to drags:{}
drags.push(draggable) to drags[draggable.element.id]=draggable
unregister this.drags to
if(drags[draggable]) delete drags[draggable]
else delete drags[draggable.element.id]
Not sure if in that last part about deleting, you'd need to null out the draggable first before deleteing from the drags object.
This assumes that I've understood correctly the role of Draggables.drags and how/why to unregister them.
Comments and changes to this ticket
Please Login or create a free account to add a new comment.
You can update this ticket by sending an email to from your email client. (help)
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
script.aculo.us is an open-source JavaScript framework for visual effects and interface behaviours.
Source available from github
The Git repository resides at:
http://github.com/madrobby/scriptaculous
Check out the current development trunk with:
git clone git://github.com/madrobby/scriptaculous.git
As script.aculo.us 1.xx is feature-frozen, this development trunk is for bugfixes only.
New development should happen only for
script.aculo.us 2.
Creating a bug report
When creating a bug report, be sure to include as much relevant information as possible. Post a an example that shows off the problem. Preferably, alter the unit tests and show through either changed or added tests how the expected behavior is not occuring.
