|
I'm using jsTree plugin to display tree.
The tree is loaded using ajax to a div with ul-li structure. And here is how I initialize it.
I'm trying to get all nodes from the tree on a button click like that:
But it always alerts false. How can I make it work? Or how can I get all elements of the tree with their ids and children? |
$('#jseq_tree').jstree('get_json', -1);
Use this:$('#jseq_tree').jstree('get_json');
Best regards,
Ivan