Dynatree is a JavaScript tree view plugin for jQuery with support for persistence, keyboard, multiple selection, drag and drop, and dynamic Ajax loading.

learn more… | top users | synonyms

0
votes
0answers
7 views

Dynatree using InitAjax - How to display reloaded tree using jquery effect (e.g. fadein)?

Any idea how to use a jquery effect such as fadeIn when loading / reloading an ajax dynatree? Sort of show / hide options in the dynatree object? Currently the loading icon appears and then the tree ...
0
votes
0answers
18 views

dynatree IE 8 Issue

I have an issue with IE 8 and dynatree. While I am dragging a node outside of the container, I am loosing the selected node. It works fine with IE 9 and 10. Please help me find a solution for ...
0
votes
0answers
15 views

Check the checbox corresponding to node key in Dynatree

I am storing some data according to the checked nodes.For each checked node i will be storing the key in database. Now suppose when a come again to the same page say in EDIT mode of my application i ...
0
votes
0answers
4 views

Dynatree hierarchical select (Mode 3) not working

I have a dynatree instance at http://educateusa.com/newdev/viewer and it is set to use selectMode: 3 but it isn't doing this. I have read several other posts where people want to do something special- ...
0
votes
1answer
25 views

jQuery dynatree Tooltip

Using jQuery and Dynatree, I am trying to get the dynatree tooltip behavior like the jQuery normal tooltip. Did anyone get that? As for what I am getting to do, the dynatree tooltip is just the ...
0
votes
0answers
21 views

Dynatree as Observable Collection in asp.net mvc

I'm using dynatree with which I'm only using the nodes for: icon href Based on certain conditions I need to change the icons of the nodes periodically(~10s). If I use , dynatree.getTree() ...
-1
votes
0answers
35 views

Dynatree search nodes

Is there any search functionality with Dynatree? I've tried some search methods like LiveSearch. but since it doesn't work for collapsed nodes I can't use that.
0
votes
1answer
54 views

Dynatree initial load with children

I have a lazy loading DynaTree in the lastest version 1.2.4 and get the challange, to provide the path to the current selected node. I do a loop over the root nodes to build the first level of the ...
0
votes
1answer
51 views

In jquery dynatree , class for node is removed when I click on lazy node

I am using jquery-dynatree with context-menu option. For one of the menu item on context-menu, I need to show the entire sub-tree as a selection. i.e. selected node and all its children, I am able to ...
0
votes
1answer
24 views

Deselect all children in partially selected dynatree

I have a hierarchical dynatreee with checboxes. Clicking on a parent checkbox of a partially selected tree FIRST selects all of its children and then toggles between selecting/deselecting all the ...
0
votes
1answer
107 views

Dynatree Lazy Load Not Working

I'm creating a dynatree and loading the same data as provided in the example: http://wwwendt.de/tech/dynatree/doc/sample-lazy.html Only my lazy node (Sub-item 2.3 (lazy)) does not show as ...
0
votes
0answers
45 views

dynatree with lazy loadind: expand all is slow

I have using dynatree, its a great API, working really good for my requirements, now i have a scenario, where i have 5000 node, and the levels for tree are 10, i have implemented lazy load, and its ...
0
votes
0answers
56 views

How to load grand children with php and MySql in a Dynatree lazy node for different types of nodes on the same level?

I have in my jquery block this part of a Dynatree implementation: initAjax: { type: "POST", url: "streams.php?getfiles=true", data: "getcategories=true" }, and in my ...
0
votes
2answers
173 views

How best to wrap the Dynatree tree widget inside an Angular Directive?

I understand the basic features of Angular Controllers and Directives but I am struggling to see how I can best apply them to wrap the Dynatree tree widget that we use. The issue is that Dynatree ...
0
votes
0answers
87 views

Dynatree - function getNodeByKey didn't work if node loaded from ajax

It's first time for me using dyna tree.. When I load children directly when initializing tree, like this : children: [ {title: "Item 1"}, {title: "Folder 2", "key":"item2", ...
0
votes
0answers
59 views

How to change minus sign (-) to plus sign (+) on adding a new child node

I have a dynatree with nodes. Some nodes have children. Some nodes don't. Under some parent node that does not have any child yet and so initially has a minus sign (-) on its left hand side by ...
0
votes
0answers
84 views

how to Dynatree onActivate prevent default

i use onActivate for my tree element handler, i got this sample form documentation. my handler is like this if(node.data.href){ if(booleanVar){ //open url in target frame ...
0
votes
1answer
686 views

Hot Towel SPA Durandal Knockout and Dynatree

I am trying to get the dynatree control to work in the Hottowel viewmodel, based on this fiddle, http://jsfiddle.net/EZgNs var ViewModel = function() { var self = this; self.initialized = ...
0
votes
0answers
33 views

Using Dynatree, my selected node looses focus when its parent node collapse. How can i prevent this from happening?

I have a tree using Dynatree, when i select a node it is HIGHLIGHTED but when I collapse the node's parent the highlight disappears. How could I prevent removing the highlight when im collapsing the ...
1
vote
0answers
65 views

Jquery dynatree do no react on first click on a radio button

I use the click function to move an edit menu next to the radiobutton in a rails application. It works fine except for that the first click on a radiobutton has no effect. The second click and another ...
0
votes
1answer
327 views

jQuery Dynatree, select a child node by title?

I'm using some code to programmatically select a root node (the only one in it) of a dynatree, i.e. $("#divDynaTree").dynatree("getRoot").visit(function (node) { node.select(true); ...
0
votes
1answer
87 views

How to display checkbox in leaf node of dynatree?

I have implemented dynatree with checkbox=true. but i want to display checkbox only for leaf nodes. how to achieve this ? Thanks
1
vote
1answer
129 views

Dynatree is expended on loading

I am creating a dynatree with NODE option expand = false. but when I view the tree, it shows all expended at the beginning itself. How to get tree with all collapse in initial stage. below is my code ...
2
votes
1answer
111 views

Recursive Hierarchical Joins with Depth

I followed this Recursive Hierarchical Joins in C# and LINQ post to implement recursive join extension to show a tree view data in my application. As i have 15000 tree nodes, the jQuery DynaTree at ...
0
votes
1answer
289 views

Dynatree how to send data back to the server on tree modifications

I am using Dynatree with ASP.NET and MVC4, I was able to Initialize Tree with the Data from Server end. My question is how i can send data back to server on certain tree modifications. (For example ...
0
votes
0answers
189 views

Javascript error in dynatree: Unable to get value of the property 'select': object is null or undefined

I have written code using dynatree jquery and I am getting error which is most general one and I am not able to find solution for this Microsoft JScript runtime error: Unable to get value of the ...
0
votes
0answers
72 views

dynatree is not visible after node.remove();

I have following code in my java script function which deals with Dynatree and var node = $("#tree").dynatree("getActiveNode"); alert(node.data.title); node.remove(); When i am calling this ...
1
vote
1answer
136 views

What are the parameters to the dynatree onClick callback function?

I am looking at the dynatree documentation, and it shows that the onClick callback function is passed two parameters: node & event. What exactly are these parameters? I would assume that the ...
0
votes
4answers
247 views

changing values of my directive in angular

I have this directive MyApp.directive('dynatree', function ($rootScope) { return { restrict: 'E', link: function postlink(scope, element, attrs) { ...
0
votes
0answers
77 views

How to create a link inside of dynatree on a custom node?

I am using dynatree and added a custom hoverover menu with links to pages; however, I cannot figure out why my links to the other pages aren't firing.. Here is my code for the tree: <script ...
0
votes
1answer
514 views

Dyna tree ajax load callback

I currently load my dyna tree from using JSON as so: $(document).ready(function () { // Loads tree $("#TreeManGrp").dynatree({ initAjax: { url: "/Terminals/Refresh/" }, ...
0
votes
0answers
152 views

Jquery page event order

I am using the dyna tree JQuery plugin. I have added some data to each node that I retrieve usiong the in built functions, this is working fine. $(document).ready(function () { // Loads tree ...
0
votes
1answer
173 views

dynatree find all selected highest level nodes

I am trying to find all the selected highest level nodes For example if I have tree like -grandparent1 --parent1 ---child1 ---child2 --parent2 ---child3 ---child4 If some one selects ...
0
votes
2answers
386 views

How do I expand all and collapse all using dynatree?

I am using dynatree and would like to have "open all" and "close all" links above the tree. How do I do this using a link? Thanks in advance.
0
votes
1answer
75 views

How do I create an object array to load dummy data into dynatree?

I am creating a wireframe that will use dynatree to display a tree. I would like to load some dummy data into the tree using an object array. I read the documentation and was able to load the ...
1
vote
0answers
94 views

JAWS not reading the correct dynatree item in IE9

I’ve run into a problem with Internet explorer 9 and JAWS when using the dynatree tree control with checkboxes. My problem is when the user presses the spacebar the currently focused item is checked ...
0
votes
2answers
232 views

Dynatree - 2 links per node?

Does anyone know if it's possible to make the DynaTree jquery plugin handle two HREF links per node? I have one link working fine but I'm also looking at a request to display a "contacts" image on ...
0
votes
1answer
115 views

Dynatree drag and drop in IE

I've been starting migration from jsTree to Dynatree, because jsTree's documentation is out of date for a long time and you should spend a lot of time in debugging, but I faced with a problem - d'n'd ...
0
votes
0answers
81 views

Dynatree: add/remove performance

I'm using dynatree as a one-level tree (only the root has children, no sub-children) with a thousand nodes or so; they have to be rendered at the same time, no lazy loading or scrolling or anything ...
0
votes
0answers
188 views

knockout dynatree

I need to be able to detect TreeView node drag and drop changes using Knockout and jquery. This one is a good example but it only initializes the tree. http://jsfiddle.net/jearles/EZgNs/ Thanks. ...
1
vote
0answers
42 views

dynatree show grandchildren at different <div> location

I have the dynatree working fine. However I need something like this: When click on "Sub-item 2.1.1", the children (sub-item 2.1.1.1 & 2.1.2.2) will show at right hand panel (in another div ...
7
votes
0answers
793 views

Dynatree ignores select property

I am using the dynatree plugin to display a checkbox tree, using multi-select mode (mode 3). When the tree is initialized using ajax (no lazy loading), it seems to forget that some nodes are loaded ...
0
votes
1answer
402 views

Dynatree init from external data not wokring

First time on Stack Overflow :-). I have been using the Leo Outliner mainly to organize my task and writings and works pretty well to let me clarify my mind on complex subjects, but I cant not share ...
0
votes
1answer
147 views

undo drag and drop of item

I have a full functional dynatree, where data gets load via ajax (database source), now i enabled drag and drop functionality for the tree. When an item gets dropped i do an ajax request to update the ...
1
vote
0answers
209 views

Remove all selected nodes in dynatree

I want to remove all selected nodes from dynatree? But it throws an error if you delete a folder before the child. How can i delete the list of selected nodes in order of leaf nodes first? for (var ...
2
votes
1answer
326 views

How to get selectable dynatree output as JSON?

I am have created a selectable JQuery Dynatree object, and now what I want are two things: pass the Dynatree selection result into JSON and pass to another tree as a preview. post the JSON format ...
1
vote
0answers
248 views

How to load dynatree properly to select more or deselect nodes

What about generate tree with selected values? What i do is storing the selected keys, and then on edit, i generate the tree with the help of an extra json array with the selected keys. But the ...
0
votes
1answer
189 views

Create a node and add it as sibling node before another sibling with dynatree

I want to create programmatically a new node. Then I want to add this before another node as sibling. This code does not work: var node = $("#TreeDiv").dynatree("getActiveNode"); var nextSiblingNode ...
0
votes
0answers
98 views

Dynatree - Setting Node Status to Lazy

I'm using JQuery Dynatree plugin and I have a situation where I want all my nodes to be lazy, even after they are expanded (so they can be expanded again and refresh the child nodes via ajax request). ...
0
votes
2answers
115 views

Creating nested python dictionary for Dynatree

The dynatree jquery tree element can read from the following format: {'title':'a','children':[{'title':'b','children':[{'title':'c','children':[]}]}]} I have a path a:b:c. How to generate nested ...

1 2 3 4