Looking for a draggable checkbox list control for HTML/JQuery

Go To StackoverFlow.com

3

I was wondering if there's a JQuery control to do the following?

Have a list of check boxes that a user, besides checking and unchecking, can drag around to change their order.

2012-04-04 02:27
by ahmd0
It would be pretty simple and straightforward to do this with jQuery UI's sortable method - Colin Brock 2012-04-04 02:32
Thanks, I'm learning something. Why don't you post it as an answer and I'll mark it - ahmd0 2012-04-04 03:14
Sure @ahmd0 - Glad you found it useful - Colin Brock 2012-04-04 03:16


5

You could do this pretty easily using jQuery UI's sortable method.

Here is a very basic example to get you started, using the demo found in the above link, with some checkboxes added.

2012-04-04 03:15
by Colin Brock
Very much appreciated - ahmd0 2012-04-04 03:22
@ahmd0: You're very welcome - Colin Brock 2012-04-04 03:28
Ads