вот мой код
$(function () {
$("#demoTree").jstree({
"themes": {
"theme": "default",
"dots": true,
"icons": false,
"url": "/Scripts/themes/default/style.css"
},
"json_data": {
"ajax": {
"async": true,
"url": "/Home/GetDataAjax",
"type": "POST",
"data": function(n) { return { id: n.attr ? n.attr("id") : 0 } }
}
},
"plugins": ["themes", "json_data", "ui"]
}).bind("select_node.jstree", function(event, data) {
});
$("#demoTree").dblclick(function () {
document.location.href = $(this).attr('href');
});
});