jquery-dynatree

Dynatree multi - selection implementaion ala Windows style

I would like to implement windows style multi-selection: when user holds CTRL key and selects several nodes of the tree. Dynatree (from here http://wwwendt.de/tech/dynatree/doc/dynatree-doc.html) by default has checkboxes for node selection which my client doesn't seem to like. My question is, is it possible to implement what I need ...

Can a node in dynatree have several parents?

using this http://wwwendt.de/tech/dynatree/ I know the answer is probably no, but I want to verify this: can a node have several parents in this component? Thank you in advance! ...

dynatree: how can i select child node programmatically

hello everyone i m using jquery's dynaTree in my application and i want to select the all the child nodes programmably when a node is selected. the structure of my tree is as follows <div id = "tree"> <ul> <li>package 1 <ul> <li>module 1.1 <ul> <li> document 1.1.1</li> ...

Dynatree toDict()

In the http://wwwendt.de/tech/dynatree/index.html it says toDict() Convert the tree into a JavaScript object. See node.toDict() for details. Is there a way to initialize the tree from that object later? Thanks. ...

Dynatree addChild - question for the component's author

http://wwwendt.de/tech/dynatree/index.html I would like to clarify the following: when addChild is invoked - does the whole tree gets re-rendered or just the nodes modified (added nodes and the nodes that have new children)? I am getting 2 conflicting pieces of info: http://stackoverflow.com/questions/3026267/lazy-loading-in-dynatree ...

JQuery DynaTree plugin - how to invoke hyperlink

I have a link on web page <li data="url: 'www.mypage.com?index.php?CId=2&MId=14&MTId=1'">mylink In my js script I have $(document).ready(function() { $("#tree").dynatree({ persist: true, onPostInit: function(isReloading, isError) { this.reactivate(); }, onActivate: function(dtnode) { var isInitializing = dtnod...

dynatree disable node checkbox on the fly

http://wwwendt.de/tech/dynatree/index.html Is it possible to disable the checkbox programmatically using javascript? I know that there is a property called 'unselectable',but it seems to be inaccessible once the node has already been created and added to the tree - it can't be modified on the fly. ...

jQuery / Dynatree: How to populate dynatree dynamically using asynchronous ajax call?

Hi I'm new to dynatree, but I find it very cool. I am trying to use this treeview in my app where I need to populate the tree based on dropdown slection event in my page. The tree will be initially and will only needs to be populated based on the selections in dropdown fields in the page. I tried to read the documentation, but couldnt...