Код: Выделить всё
// Create instance for tree
$(function () {
$('#myTree').jstree({
"core": {
"themes": {
'name': 'default',
"variant": "small",
"icons": false
}
},
"contextmenu": {
"items": getMenu(),
"select_node": false
}
,"plugins": ["contextmenu"]
});
});
// when context menu is shown
$("#myTree").bind('context_show.vakata', function (reference, element, position) {
// code to do...
});
// when context menu is hidden
$("#myTree").bind('context_hide.vakata', function (reference, element, position) {
// code to do...
});
Подробнее здесь: https://stackoverflow.com/questions/361 ... and-hidden