Async jQuery treeview plug-in without PHP
I want to use the jquery treeview plugin to create my folder tree. The tree is quite large and I need to create it dynamically as the user clicks thru the tree. The tree structure is coming from a document management system which does not support PHP.
The only mechanism available for extending the tree is by launching a URL. The URL will contain a source folder and the document management system will return a list of all sub-folders below this folder. The output will be in XML, but I can convert it to any format needed, including HTML.
Since I cannot use PHP, I'm kinda stuck. What I would like to do is to expand a tree by calling a custom URL per node. The output from the URL should then be inserted as sub-nodes of the calling node. Can this be done? I'm open to alternative suggestions as long as it will work via a custom URL per node.
Thanks for your help!