Recently, I have been working on creating a node using crrm as shown below
$("#TreeDiv").jstree("create", $("#somenode"), "inside", { "data":"new_node" });
This specific function is triggered by a wizard, enabling me to seamlessly create a new node within the desired location in the tree structure.
Up until now, I have successfully managed to add a node under #somenode
. However, an issue arises when the new node is created - it appears focused and allows for editing of the node name.
See screenshot below -
Is there a way to disable this editing feature programmatically?