Reddy
Reddy

Reputation: 1497

jQuery UI (Sortable) - Disable Sorting / Drag n Drop functionality for one box out of multiple

I am using jQuery UI sortable plugin with connectWith option...

How can I restrict the Drag n Drop for one perticular box out of many boxes?

For Eg: A box with Disabled background (.nodrop)...

Online Demo

Upvotes: 1

Views: 2378

Answers (1)

L.A.
L.A.

Reputation: 147

see my code.

https://jsfiddle.net/deadmask92/bnpzaobL/2/

I added:

.destination2 ul

$(".nodrop ul").sortable( "option", "disabled" );

Upvotes: 4

Related Questions