I have been trying to figure out a way to create a drag & drop list inside of c# that is similar to the drag & drop lists that I've found for JavaScript on the web. Here is an example of the JavaScript lists that I'm talking about:
http://blog.paranoidferret.com/index.php/2007/10/04/javascript-tutorial-drag-drop-lists/
I plan to use the list so I can organize different tasks which can be added/deleted via a different process and it would be great to get the kind of behavior like on the site listed above, but I would be willing to use something else if someone knows a better way of doing this.
Thanks for any and all help.
~jeremy
Loading
ChongoPosted Dec 9, 2007, 12:00 AM
If I were going to implement it I would start by looking at the Drag Events. I am looking in C# 2002 right now and see DragDrop, DragEnter, DragLeave, DragOver events, using the .items.selectedindex of a normal select box you could probably figure out how to add/remove items or "transfer them"