NodeSpec::draggable not working

Setting draggable in the schema seem to make no difference. Node is still draggable. Any idea why ? The schema looks like this.

https://prosemirror.net/docs/ref/#model.NodeSpec

paragraph: {
        draggable: false,
        content: "inline*",
        group: "block",
        attrs: {
            className: {
                default: ''
            }
        },
        parseDOM: [{
            tag: "p",
            getAttrs: dom => {
                let attrs = {};

                // class
                if(dom.className){
                    attrs.className = dom.className;
                }
                return attrs;
            }
        }],
        toDOM(node) {
            let attrs = {};
            if(node.attrs.className !== ''){
                attrs.class = node.attrs.className;
            }
            return ["p", attrs, 0];

        }
},

The problem can be seen if you install the code from here.

What were you expecting to happen and what happened instead?

In, for example, the basic demo, I can only drag paragraphs when they are node-selected, which seems to suggest that at least in that case the option is working as intended.

1 Like

I completely missed “without being selected” in the docs. Sorry. I was wrongly expecting that the node is not going to be draggable. But is and there is no simple way of stopping that it seems. Thank you.