Does anyone know of a good .Net2.0+ compatible dual listbox control that either offers dragging and dropping between lists, or simple buttons to move items between lists and also sort the items in a particulr list. This is for a web based app and I would prefer some nice javascript to make this one speedy.
Asked
Active
Viewed 4,823 times
6
-
No answers yet huh? I don't know of anything exactly matching your request either, but you could probably cobble something together with YUI. Check it out if you haven't already. – Bryan Mar 27 '09 at 23:28
-
Is this how your solution worked? Serializing the order to a hidden field and deserializing on postback to update the order? – jamiebarrow Aug 03 '10 at 09:12
2 Answers
2
I decided to write my own drag and drop list control for this one using JQuery and JQuery UI. You can try out a sample here: demo. The right side sort list will scroll down if the left list is too long thus making it easier to drag and drop. I still have more testing and a few bug fixes on this one, but it seems to be working pretty well.

CodeMonkey
- 300
- 1
- 6
- 18
-
Awesome! I like the insert-placement like you'd expect from a nice GUI and it works great in Opera. Kudos! – Bryan Mar 30 '09 at 09:14
-
3
-
1-1 Because the link is still broken after being aware of that a year ago. Posting a code sample here or a screenshot would have been helpful but for now this answer is almost no use to the rest of us. – jpierson Apr 01 '11 at 22:26
-
I put up a new piece of sample code for the dual list. This definitely isn't production ready and would need to be updated to the latest version of jQuery, but it seems to work fairly well: [http://monkey.ca/dual-list/sample.html](http://monkey.ca/dual-list/sample.html) – CodeMonkey May 16 '11 at 07:37
-
-
I found the old code and re-posted the sample: https://rps.is/dual-list/sample.html – CodeMonkey Apr 20 '17 at 06:11
1
Perhaps this answers your question?
From that post the infinity links to meadmiracle for a jQuery implementation and a demo. I personally don't like the horizontal layout of the buttons though although I'm sure that could be fixed pretty easily.
Also I've found this jQuery multi selection control interesting over on the UX Stack-Exchange.