Does anybody know how to combine jQuery UI selectable and sortable ? This script: http://nicolas.rudas.info/jquery/selectables_sortables/ doesn't work in Chrome and it also has plugin modifications.

Thanks

link|improve this question

75% accept rate
I have done it, but not with sortable and selectable, due to some copyright issues i cnt give u the code :), but i will show you instructions on how to :) – Val Feb 23 '11 at 13:06
feedback

3 Answers

up vote 2 down vote accepted

Just found this very easy solution from rdworth:

CSS:

ul { width: 300px; list-style: none; margin: 0; padding: 0; }
li { background: white; position:relative;margin: 1em 0; padding: 1em; border: 2px solid gray; list-style: none; padding-left: 42px; }
li .handle { background: #f8f8f8; position: absolute; left: 0; top: 0; bottom: 0; padding:8px; }
.ui-selecting { background: #eee; }
.ui-selecting .handle { background: #ddd; }
.ui-selected { background: #def; }
.ui-selected .handle { background: #cde; }

HTML:

<ul id="list">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>Item 4</li>
    <li>Item 5</li>
</ul>

Javascript:

$( "#list" )
    .sortable({ handle: ".handle" })
    .selectable()
    .find( "li" )
        .addClass( "ui-corner-all" )
        .prepend( "<div class='handle'><span class='ui-icon ui-icon-carat-2-n-s'></span></div>" );
link|improve this answer
Awesome find. Thank you. – Spencer Ruport May 19 at 19:48
feedback

http://jsfiddle.net/t9YTB/

This is as much as i can give u :) but the idea is there. its not alllll complete but hopefully u can play about with the values and see how it goes from there :)

link|improve this answer
Thank you for your help – minnur Feb 26 '11 at 2:04
1  
@minnur, Saying thank you is good. Voting up the answer is even better :) – Tahir Akhtar Jul 19 '11 at 14:48
he got more votes for asking than me lol :) – Val Jul 20 '11 at 8:58
feedback

Part of my jQuery base-arsenal includes the following, as it's usually annoying when you go to drag something and end up selecting text instead...

// disables text selection on sortable, draggable items 
$( ".sortable" ).sortable();
$( ".sortable" ).disableSelection();

Not sure if you can just flip the "disable" to "enable", but there's my $.02. Without trying it though.. common sense suggests that you may need to define an inactive section within the same "group" element, to provide a "handle" for the drag action.... or else those clicks may relentlessly be mistaken as the intent to select/edit...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.