I've seen an example somewhere online showing how to customise the appearance of jstree's right-click context menu (using contextmenu plugin).

For example, allow my users to delete "documents" but not "folders" (by hiding the "delete" option from the context menu for folders).

Now I can't find that example. Can anyone point me in the right direction? The official documentation didn't really help.

Edit:

Since I want the default context menu with only one or two minor changes, I'd prefer to not recreate the whole menu (though of course I will if it's the only way). What I'd like to do is something like this:

"contextmenu" : {

items: {
    "ccp" : false,

    "create" : {
    // The item label
    "label" : "Create",
    // The function to execute upon a click
    "action"            : function (obj) { this.create(obj); },
    "_disabled"         : function (obj) { alert("obj=" + obj); return "default" != obj.attr('rel'); }
    }

}

}

but it doesn't work - the create item is just always disabled (the alert never appears).

link|improve this question

68% accept rate
feedback

3 Answers

up vote 30 down vote accepted
+100

The contextmenu plugin already has support for this. From the documentation you linked to:

items: Expects an object or a function, which should return an object. If a function is used it fired in the tree's context and receives one argument - the node that was right clicked.

So rather than give contextmenu a hard-coded object to work with, you can supply the following function. It checks the element that was clicked for a class named "folder", and removes the "delete" menu item by deleting it from the object:

function customMenu(node) {
    // The default set of all items
    var items = {
        renameItem: { // The "rename" menu item
            label: "Rename",
            action: function () {...}
        },
        deleteItem: { // The "delete" menu item
            label: "Delete",
            action: function () {...}
        }
    };

    if ($(node).hasClass("folder")) {
        // Delete the "delete" menu item
        delete items.deleteItem;
    }

    return items;
}

Note that the above will hide the delete option completely, but the plugin also allows you to show an item while disabling its behaviour, by adding _disabled: true to the relevant item. In this case you can use items.deleteItem._disabled = true within the if statement instead.

Should be obvious, but remember to initialise the plugin with the customMenu function instead of what you had previously:

$("#tree").jstree({plugins: ["contextmenu"], contextmenu: {items: customMenu}});
//                                                                    ^
// ___________________________________________________________________|

Edit: If you don't want the menu to be recreated on every right-click, you can put the logic in the action handler for the delete menu item itself.

"label": "Delete",
"action": function (obj) {
    if ($(this._get_node(obj)).hasClass("folder") return; // cancel action
}

Edit again: After looking at the jsTree source code, it looks like the contextmenu is being re-created every time it is shown anyway (see the show() and parse() functions), so I don't see a problem with my first solution.

However, I do like the notation you are suggesting, with a function as the value for _disabled. A potential path to explore is to wrap their parse() function with your own one that evaluates the function at disabled: function () {...} and stores the result in _disabled, before calling the original parse().

It won't be difficult either to modify their source code directly. Line 2867 of version 1.0-rc1 is the relevant one:

str += "<li class='" + (val._class || "") + (val._disabled ? " jstree-contextmenu-disabled " : "") + "'><ins ";

You can simply add a line before this one that checks $.isFunction(val._disabled), and if so, val._disabled = val._disabled(). Then submit it to the creators as a patch :)

link|improve this answer
Thanks. I thought I once saw a solution involving changing only what needed changing from the default (rather than recreating the whole menu from scratch). I'll accept this answer if there is no better solution before the bounty expires. – MGOwen Jan 5 '11 at 23:25
@MGOwen, conceptually I am modifying the "default", but yes you're right that the object gets re-created each time the function is called. However, the default needs to be cloned first, otherwise the default itself is modified (and you'll need more complex logic to revert it back to the original state). An alternative I can think of is to move var items to outside of the function so its created only once, and return a selection of items from the function, e.g. return {renameItem: items.renameItem}; or return {renameItem: items.renameItem, deleteItem: items.deleteItem}; – Box9 Jan 5 '11 at 23:35
I like that last one especially, where you modify the jstree source. I tried it and it works, the function assigned to "_disabled" (in my example) runs. But, it doesn't help because I can't access the node (I at least need it's rel attribute to filter nodes by node type) from within the function's scope. I tried inspecting the variables I could pass in from the jstree source code but couldn't find the node. Any ideas? – MGOwen Jan 12 '11 at 3:54
@MGOwen, it looks like the <a> element that was clicked is stored at $.vakata.context.tgt. So try looking up $.vakata.context.tgt.attr("rel"). – Box9 Jan 12 '11 at 4:43
@Box9 By the time it gets that far, $.vakata.context.tgt == false. I've looked through all the variables I could find to pass ($.vakata, s, val, i) and there's nothing referencing the node right-clicked. I'll try your original suggestion. Thanks. – MGOwen Jan 17 '11 at 4:24
show 1 more comment
feedback

To clear everything.

Instead of this:

$("#xxx").jstree({
'plugins' : 'contextmenu',

'contextmenu' : {
  'items' : { ... bla bla bla ...}
}

});

Use this:

$("#xxx").jstree({
'plugins' : 'contextmenu',

'contextmenu' : {
  'items' : customMenu    }

});
link|improve this answer
Thx you made code jstree code short – user367134 Oct 22 '11 at 12:51
feedback

You can modify @Box9 code as to suit your requirement of dynamic disabling of context menu as:

function customMenu(node) {

  ............
  ................
   // Disable  the "delete" menu item  
   // Original // delete items.deleteItem; 
   if ( node[0].attributes.yyz.value == 'notdelete'  ) {


       items.deleteItem._disabled = true;
    }   

}  

You need add one attribute "xyz" in your XML or JSOn data

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.