views:

160

answers:

1

Hello, how can I disable draggable option in jsTree? I want to disable moving nodes. How can I achieve this?

A: 

simply add this:

"default" : {
    draggable : false
},

it should be in the types: section.

Asaf