Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
21 views

How to load grand children in lazy loading of dynatree?

I have requirement where some times I would like to load children as well as grand children and if possible their children in lazy loading..Is it possible? When I am preparing json response for lazy ...
0
votes
1answer
25 views

How to get key node from dynatree after init

Hello I want get key from dynatree after create tree. I use $("#tree").dynatree("getTree").persistence.activeKey; but it return null
0
votes
0answers
38 views

LinQToSQL enitity JSON serilizing

We want to use DynaTree in mvc3 as a treeview,We have created a test object and succsessfully serilize it in JSON format,But when we pass our LINQToSQL generated entity to JSON serilizer we get the ...
0
votes
0answers
37 views

$(“#tree”).dynatree is not a function second time around

I have a top accordion which is a search box that finds the structure id based on some search criteria and when you click on one of the result, it finds and highlights the right node in the tree and ...
0
votes
1answer
28 views

setSelectedNodes for jquery dynatree?

I'm trying to select nodes on an existing dynatree using jquery/javascript, I googled quite a bit about it and read the documentation but couldn't find anything like setSelectedNodes so I can select ...
1
vote
0answers
26 views

Dynatree dnd IE8 - when folder is expanded dragged item disappears and dragging stops

When the dragged item is hovering over collapsed node - the node expands but the item disappears and the dragging stops. This is only happening in IE8, and it can bee seen in dynatree example browser ...
0
votes
1answer
109 views

Trying to reload/refresh dynatree with new data

I've seen this question already, and I've tried the solution given (use tree.reload()), but it's not working for me. I have a tree that's initialized on doc ready using initAjax(), and I'm trying to ...
0
votes
1answer
25 views

How to drop a node on an empty dynatree

I have two dynatrees on the same page. Tree 1 has various number of nodes, tree 2 is empty. I would like to drag a node from tree 1 and drop it on tree 2. Everything works fine while tree 2 is not ...
0
votes
1answer
53 views

Improve loading speed of a dynatree (300 nodes) which takes 20 to 25 seconds

I am building the entire JSON reading contents of each node and its details from the database. Then use initAjax method to load the dynatree. It takes about 20 to 25 seconds to load.Is there any way ...
0
votes
2answers
111 views

Dynatree image inside tooltip

im using the jQuery Dynatree plug in a new site that im developing. Here is an example of how i wrote it var treevluData = [ {title: "Team 1", isFolder: true, tooltip: "Tooltip test", expand: ...
0
votes
1answer
112 views

Using and creation of Dynatree

I am using (jquery) dynatree with struts. The items on the tree will be created this way: On right click of a node, a context menu shows with options like [create, modify and delete]. On click of ...
0
votes
1answer
99 views

Dynatree IE9 problems loading

I´ve implemented a dynatree on a web application, dynatree is generated from server with a JSON object. Dynatree works perfectly on Firefox, Safari, Chrome and Opera (last versions), but when I open ...
0
votes
2answers
63 views

Performance of folder selection dialogue

I need to present a folder selection of the entire hard drive of the user (script runs on the user pc). From that list the user can choose one or more folders. I am using the jquery library dynatree ...
0
votes
1answer
298 views

Pass a JSON array from PHP to Dynatree

I'm using Dynatree for the first time and wrote a PHP script that returns a properly formatted JSON array. I've read the Dynatree documentation, but can't figure out how to pass in the JSON array ...
-1
votes
2answers
106 views

jQuery.dynatree.js - JS Error in IE 8, Unknown Runtime Error Line 320 char 8

My dynatree works fine in Firefox. In internet explorer 8 it gives me an unknown runtime error. What can I do?
0
votes
1answer
249 views

jQuery - dynatree lazy loading and multi-hier (type 3) selectMode

I'm using dynatree with the selectMode set to 3 (multi-hier). I'm also using checkboxes, so when you select a folder, all children below it are also selected. I have have (and need) lazy loading ...
1
vote
2answers
84 views

How to prevent the parent node from being checked on a hierarchy when it has a single child node?

As you can see on the image below, when marking the "Guest" all parents that have a single child gets checked too. But I actually want just the "Guest" checked and its parents unchecked as in the ...
1
vote
1answer
330 views

dynatree + asp.net mvc - How do you post data back to server?

I am using asp.net mvc 3 and looking at possibly using dynatree. I am in the research page still and trying to figure out some outstanding questions before I start actually implementing it. Dynatree ...
0
votes
1answer
242 views

how to save dynatree structure after drag and drop

I can't figure out how to save the new dynatree after dragging and dropping node to it. I have 2 dynatree and I'm dragging from one to another but i don't know if i can get the info of the structure ...
0
votes
1answer
157 views

drag and drop from/to dynatree

I'm trying to drag data from a dynatree and drop it to another dynatree. In the documentation an example shows how to move a node in the same tree. Is it possible to move a node and put it in the ...
0
votes
1answer
160 views

DynaTree displays Null root on page render

Can someone please shed some light on this one for me? I cannot figure out why there is a null root that renders for the JSON objectthat i am returning. The children are present in the JSON and the ...
0
votes
1answer
76 views

Dynatree .sortChildren

I have two instances of dynatree objects on a page. I have the trees populate from various XML data. There is an onChange event which has the trees change the data they are using. The last thing I ...
0
votes
1answer
223 views

Dynatree: Prevent parent nodes from being selected by default, using select mode 3 (hierarchical)

I am using Dynatree with select mode "3", which enables a hierarchical selection mode. When my tree renders, all nodes that have children render as selected by default. Leaf nodes render unselected ...
0
votes
1answer
237 views

Disable/enable context menu for jQuery Dynatree not working

I am using the jQuery dynatree along with the context menu found here. The issue I'm having is that I can't get the enable/disable of the context menu or individual items in the menu to work. The ...
0
votes
0answers
108 views

Multiple Node Drag & Drop with Dynatree

I saw the Dynatree documentation [http://wwwendt.de/tech/dynatree/doc/dynatree-doc.html] but I could not find how to implement drop of multiple nodes on to a div. Dropping single node [parent/child ...
0
votes
1answer
53 views

Dynatree - Open link in a new window many time

With dynatree I want to open the link selected by the user in a new window and to have the new window focused. I obtained this so: if (node.data.url) { ...
0
votes
1answer
196 views

DynaTree: How do you expand all children ( downstream node levels) from a active node?

I've got a 4 level tree and would like to expand all of its children (and children's children) when a level 2 node is activated. I can determine the current activate node level with: ...
0
votes
0answers
65 views

dynatree + asp.net UpdatePanel - make clicked nodes bookmarkable

Is there a option to make the nodes bookmarkable. Clicking on the nodes causes a postback. I would like to make that click bookmarkable. The tree should be opened the same way when calling the ...
3
votes
1answer
243 views

Dynatree jquery plugin add custom properties to node

I would like to add new properties to DynatreeNode class. For example in methods OnSelect I want to use node.myproperty. node.myproperty value is calculated from some DOM element. Is there a way to do ...
1
vote
2answers
313 views

Dynatree using asp.net mvc3

I am having a Dynatree that loads up data from a ASP.NET MVC3 controller. For the first call the tree needs to load data and then on wards the tree must load on an on demand basis (lazy loading). The ...
0
votes
1answer
258 views

Dynatree on event show siblings or change data dynamically

Can data that DynaTree uses be changed dynamically? I have a complete set of data that relates to dynatree, but I want to display only a certain branch of the tree so I iterate over the data and ...
0
votes
1answer
207 views

Is it possible to have multiple checkboxes in one node in jstree or dynatree?

All, Is it possible to have multiple checkboxes in one node in jstree or dynatree? I'm new to asp.net mvc and I’m working on a scenario somewhat similar to this one chkbox1 USA chkbox2 AK ...
0
votes
1answer
103 views

How do I bind an action to a “create/remove new node” event in DynaTree?

Getting started with DynaTree. I'd like to bind some code to the event which is "adding a new node". The onCreate option seems to be fired when a node is rendered for the first time. Yes, this ...
0
votes
1answer
140 views

Passing javascript object to ajax

I'm trying to use dynatree, and it can be initialized like this: var treeData = [ {title: "group1", key:"182" }, {title: "group2", key:"181" }, {title: "group3", key:"189" , ...
0
votes
1answer
143 views

Storing Ajax JSON response in Javascript var

I'm trying to load a Dynatree with the results of an ajax request: var treeData = []; $(function(){ $.get('/getTree.do', function(data){ treeData = data; ...
0
votes
1answer
111 views

Dynatree or Jquery UI Dialog slowing down after couple thousand members

I have a simple application where I am displaying the tree list in a dialog box for the users to pick and have a little servlet in background for lazy loading. The problem happens for me when I click ...
3
votes
1answer
372 views

can the popular javascript tree views (jstree, dynatree…) be setup to read data from an adjacency model?

can the popular javascript tree views (jstree, dynatree...) be setup to read data from an adjacency model? say I have a table with classId, ClassName,ClassType,ParentClassId how can i fetch data for ...
0
votes
1answer
279 views

Does Dynatree have json format guidelines for it to load?

I am trying to load dynatree using a json object via ajax. I dont have control over the json names and values inside the object. They will be in the format below. I have not been able to get the tree ...
4
votes
1answer
579 views

dynatree - How to scroll to active node?

I have dynatree with fixed height and vertical scrollbar. node.activate(); selects the node i'm searching for, but doesnt move the vertical scrollbar, so i have to scroll manualy to see active node. ...
1
vote
1answer
210 views

CSS side-by-side DIVs - Dynatree doesn't fill horizontally

I have two side-by-side DIVs in a JSP. It works well, with one exception: I can't get the jQuery Dynatree to fill the lefthand DIV's horizontal space properly: Here's the HTML: <div ...
0
votes
1answer
268 views

Dynatree - How To Transform The json Coming From Server?

I'm looking for some help with dynatree plugin. I need to transform the json coming from the server to make it dynatree compatible (I'm not allowed to do it on the server side), This below ...
0
votes
2answers
436 views

jQuery DynaTree - how dynamically create nodes

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 ...
0
votes
2answers
462 views

jQuery DynaTree not working

I am trying to get a DynaTree (first use of it) working w/o luck - the "tree" just shows up as a regular HTML list. I'm sure it's something trivial but I'm not seeing it. Here is my file structure: ...
0
votes
1answer
218 views

Dropping elements into a dynatree

I am just starting out with dynatree (which is indeed v. cool), but I have a non-standard use for it: sorting terms from a long list into the hierarchical Dynatree. Specifically, I want to ...
0
votes
1answer
500 views

How to Load Dynatree via Ajax using MVC

Please someone help. I cannot work out how to load a Dynatree from the server. Instead of getting a tree I get "Load error! (error)" I have read every single part of the documentaion and read ...
1
vote
1answer
166 views

Dynatree returns error when faced with more than 2000 items

I use dynatree and everything works fine but if a node has large number of items I get an error. I have read about setting enableUpdate(false); function but it also didn't help. Any ideas? var ...
0
votes
1answer
154 views

js dynatree plugin from <ul> structure - disable radiobutton selection if its root nodes

I want to disable selection of all nodes, except leafs. I mean, user should be able to select (radiobutton check) nodes only if it's leaf node of the tree. I see the docs and is indicated to use: ...
2
votes
2answers
285 views

DynaTree has two highlighted nodes on right click after left click

My problem is whenever I left click a dynatree node then right click another dynatree node to display my context menu the node which was left clicked remains highlighted in blue so I end up with two ...
1
vote
2answers
330 views

jquery dynatree class methods

I'm a new user of dynatree plugin. When I read the documentation, I found the list of tree and node class member functions, such as tree.getRoot(), node.countChildren(). However, when I tried to use ...
2
votes
2answers
934 views

Dynatree with ASP.NET MVC

Has anybody got any examples of using the Dynatree plugin with MVC? I have been wrestling with it without much progress. I have an action method which returns a JsonResult (but selects all columns in ...

1 2