[jQuery] treeview - Question regarding Async extension
First, thanks for the Treeview extension. It is great!
I have it running fine, and I have been using the lazy-loading
extension. I need to build my tree using AJAX and add an anchor tag
inside the LI tag so that I can display a dynamic treeview and allow
the user to click on a folder or leaf node and run my javascript and/
or link.
In order words, I need the JSON to be transformed into something like
this:
<ul>
<li id="123"><a href="#" onclick="myFunction(this...)">Item 1.0</
a></li>
Right now, the JSON is transformed into something like this:
<ul>
<li id="123"><span class="folder">Clinicial Research</span></li>
I don't see anything in the online demos, docs, etc for v0.1 of
jquery.treeview.async.js that would create the A tags, but I could be
wrong.
Thanks so much for your help,
Manfred