user4756836
user4756836

Reputation: 1337

Make list undraggable on button click Sortable.js

I am using this plugin:

https://github.com/RubaXa/Sortable

I want to make the list undraggable when the user clicks the button. From the github page, it seems that I can use disable:trueto do so but how do I make it work on button click?

I have tried:

Sortable.create(simpleList, {
    $('#button').click(function () {
        disable: true,
    })
});

But it makes the undraggable to begin with.

Non-working Demo:

http://jsfiddle.net/880auLx8/

Working Demo:

http://jsfiddle.net/880auLx8/1/

Upvotes: 1

Views: 440

Answers (1)

blgt
blgt

Reputation: 8205

If you go with the instructions in the readme, you should get something along the lines of:

var sortable = Sortable.create(simpleList, {});
$("#button").click(function () {
    sortable.option("disabled", true);
});

Upvotes: 1

Related Questions