Hi Ivan, first of all thanks for the jsTree plugin, it's a pretty useful.
Q: How to retrieve all the child nodes at a certain level? Say, below is how my tree looks like.
-- Folder1 // level 1
-- SubFolder1 // level 2
--A1 // level 3
--B1 // level 3
-- SubFolder2 // level 2
--A2 // level 3
--B2 // level 3
-- Folder2 // level 1
--SubFolder2 // level 2
If I select Folder1, I should be able to get all its children ( In this case its SubFolder1 and SubFolder2). Like wise if I select SubFolder2, I should get A2 and B2.
How to do that?
Thanks in advance.