I have a web app (JSPs and Servlets along with jQuery) that I am using a DynaTree to show a set of files found using a user search. The user can of course put in different values, resulting in a different set of matching files.
So, my Q:
Given that a tree is statically coded thusly in my JSP’s JavaScript:
$("#tree").dynatree({
...
children: [
{title: "Folder 2", isFolder: true, key: "folder2",
children: [
{title: "Sub-item 2.1"},
{title: "Sub-item 2.2"}
]
},
{title: "Item 3"}
]
...
How do I create this structure programmatically? I assume some way to create or access a root and then use addChild( aNode ) or some such, but I don’t find a good example/reference.
Has anyone done this ? Thanks!
Got it to work. Here’s the jQuery:
Here’s the JSON in the response (use Firebug > Net > XHR to see it):