Tagged Questions
0
votes
2answers
29 views
How to get the id on right click context menu in dojo Tree?
I want to get the node id of Dojo's tree on context menu click.
I'm making a tree in Dojo like this. Here is the id - the first param.
this.setData(
[
{ id: '5', name:'root' , ...
0
votes
0answers
24 views
How to add a dojo conext menu programatically to a dojo tree?
I want to connect my tree to a context menu programmatically. For that I tried several tutorials (I could not find that much examples). My tree looks like that:
// Create test store, ...
0
votes
0answers
24 views
DOJO: Alternative for checkItemAcceptance in dgrid
i've created an DnD Tree in Dojo on dijit base. There i've got a function in the DnD controller called checkItemAcceptance. It works fine so i thougt i could use the code for a dgrid dnd tree. But ...
0
votes
1answer
80 views
Dojo 1.8 Tree not working correctly in IE8/9, Error fired when mouse over node
I am having IE8 issues with Dojo 1.8. Now my implementation (which I am unable to post due to work privacy concerns) renders the tree but I am unable to select and am getting a Function Expected error ...
0
votes
0answers
46 views
Dojo Tree not updated after store.add
I am trying to add items in a tree. The first time a add the object, nothing append (in UI neither in the console) ; the second time I get an error in the console "object already exists" : this error ...
0
votes
0answers
137 views
Drag and drop in dijit/tree with JsonRest store didn't work
My code:
define([
'dojo/_base/declare',
'dojo/_base/lang',
'dojo/store/Memory',
'dojo/store/JsonRest',
'dojo/store/Observable',
'dojo/aspect',
'dijit/Tree',
...
1
vote
1answer
145 views
Dojo tree collapse/expand error in IE(9)
I have a dojo tree with checkboxes and it works great in FF and Chrome, but not in IE(9). In most of IE cases i could figure out some workaround for that, but this one is just to weird. It happens ...
0
votes
1answer
254 views
Dojo dgrid, put icons in each subrow in Plugin Column tree (PDF, HTML, XSL)
I have done a dojo dgrid, where I have a tree field(Plugin Column). I am trying put icons(PDF, HTML and XLS) in each subrow for the user to do download. I tried to use formatter: function(item, ...
1
vote
1answer
327 views
dojo dgrid tree, subrows in wrong position
I have a dgrid, working with tree column plugin. Every time that the user click on the tree, I call the server, catch the subrows(json) and bind it. But when it happens, these subrows are show in ...
0
votes
2answers
642 views
dijit Tree + checkbox - unable to select/unselect checkbox
I'm trying to place a checkbox inside dijit.Tree by entering input html code as part of label value. And it displays ok but I can't check or uncheck it.
As if click events are not bubbling/reaching ...
2
votes
1answer
529 views
diji.Tree + JsonRestStore - selecting node programmatically with tree.set(“path”
I've this problem. I'm using dijit.Tree with dojox.data.JsonRestStore as datasource. All nodes are lazy loaded. When I try to programmatically select a node using tree.set("path", [1,2]) I get an ...
0
votes
1answer
66 views
Dojo tree not loading when adding theme
I followed this tutorial to connect a digit.tree to a store.JsonRest and everything works well.
Before adding a dojo theme The tree is display with pure html, actions work perfectly, I can display my ...
2
votes
2answers
647 views
DOJO: dojox.grid.TreeGrid + checkbox How to
Is it possible to place chceckboxes inside LazyTreeGrid ?
Maybe there is some plugin that would automatically update the selected object and fire onSelectionChanged event ?
Thanks for help.
0
votes
1answer
212 views
How do I tell a Dojo 1.6 Tree connected to a JsonRest to have “forest” behaviour?
As the question says. I'm using a JsonRest object in Dojo 1.6 and would like to have the Tree that is listening through it have forest (rather than singular tree) behaviour.
Examples on the site ...
0
votes
2answers
178 views
I can't manage to create 3rd level of dijit.Tree
I wanted to create a 3 level dijit.Tree, like that:
-root
|
--level1
|
--level2
I thought it would be really simple since there's a code snippet in this tutorial (example 1). But somehow I manage ...
1
vote
0answers
266 views
Dijit.tree - how to update store URL
I have the following in my HTML file:
<div dojoType='dojox.data.XmlStore' id='navTreeStore' jsId='navTreeStore' url='' label='name'></div>
<div dojoType='dijit.tree.ForestStoreModel' ...
1
vote
1answer
482 views
Dojo tree parent node
I was wondering if anyone had a way to get the parent node of an item in a dojo tree? I have tried but it doesn't seem to work.
I have tried a few different ways.
First I tried this:
...
0
votes
1answer
170 views
Need suggestion on implement binary tree UI using Dojo
I have a binary tree data structure defined in ORM, and the data is stored in the database. Now I'm going to code a interactive UI logic representing the Tree using Dojo. I'm a newbie in Dojo area. ...
1
vote
1answer
235 views
DOJO difference between instantiation and using source
I am new to DOJO and trying to figure out the difference between these two uses of the seemingly two things.
dndController: new dijit.tree.dndSource("dijit.tree.dndSource",{copyOnly:true})
and
...
4
votes
1answer
306 views
How to test if Dojo/Javascript tree lazy loading is working?
I have a Dojo tree already in my code and I want to make the tree lazy loading for performance issues. I was using a ItemFileWriteStore that connected to a REST service that I made in Java. To ...
2
votes
1answer
1k views
Adding a new item to the store of a dojo tree does not trigger an update
I'am trying to add a new node to a dijit.tree by adding the node to its store.
The node is added to the store but the treeModel is not updated.
Here the setup of my store, model and tree
...
2
votes
1answer
1k views
dijit.Tree DnD from tree to tree - child nodes don't get created in target tree
I have two dijit.Trees: srcTree and trgTree.
I have implemented the trgTree.itemCreator function and the node that gets dropped is properly created in the target node/tree, but the child nodes of the ...
1
vote
1answer
889 views
How to arrange top-level node items in a dijit Tree via drag and drop
I have a dijit.Tree backed by a ForestStoreModel that uses a custom data store to provide the data. It works well, but I want to provide the ability for the user to rearrange the top-level items (and ...
1
vote
0answers
168 views
Where to set additional query parameters for tree lazy load expand requests with JsonRestStore in Dojo?
For a lazy loaded tree using JsonRestStore and ForestModel, where
would I set an additional query parameter to be included in expand
requests? I have declared the additional parameters in the SMD, ...
0
votes
1answer
479 views
Problem with a simple dojo tree loading
This simple dojo tree doesn't load. The dojo.require calls are added to the addOnLoad function. What could be the problem?
<html>
<head>
<meta charset="utf-8">
...
1
vote
1answer
2k views
dojo tree custom icons
After reading this and looking at some dojo tree examples, I tried to use my custom icons inside a dojo tree, but only the root item gets changed. Can anyone correct me? The icon is in the same ...
2
votes
3answers
2k views
Simplest way to add a tooltip to Dojo Tree node?
I have seen a number of suggestions on how to add a tooltip to Dojo Tree node, and some don't seem to work and others have me asking other questions...
One way I have tried with limited success is ...
2
votes
1answer
2k views
Lazy loading dojo tree powered by JsonRestStore and jsonp
I am trying to implement a cross domain, lazy loading tree using the Dojo toolkit. So far I have the top level nodes displaying correctly, but on clicking the expando I get a "deferred has already ...
1
vote
0answers
392 views
Dijit.Tree with dndController confirm dialog on droping item
I want ask user for confirming drop item in dijit.Tree
How implement this?
My solution
dojo.declare('myDnDSource', dijit.tree.dndSource, {
onDndDrop: function() {
if (confirm('Yes/No?')) ...
0
votes
1answer
219 views
loadmask for dijit tree
I am working on Dojo Tree.My is tree dynamic and sometimes it may have 100 treenodes.So ultimately tree loading time increases.
My tree is rendered in an accordion container.
I want to apply loading ...
0
votes
1answer
934 views
How to get focused node in dijit.Tree?
Is there a simple method to retrieve which tree node has current focus/highlight in a dijit.Tree?
0
votes
1answer
193 views
How to create a Dojo Tree with Root from Constructor
I need to create the single root data for a dijit.Tree in the browser with a function.
This works when I create the root object inline. But it breaks if I create the same object with a function.
...
1
vote
1answer
1k views
Querying Attribute Properties for dojo.data.ItemFileWriteStore (Not so easy)
I have a dojo.data.ItemFileWriteStore object with items which contain a 'children' attribute, which in turn contains an array of children items. I'm storing a tree, and I need to fetch the leaf nodes ...
5
votes
4answers
9k views
How to update dojo tree data dynamically
I would like to know how ot update the data of the dojo.dijit.tree component dynamically. At the moment I'm creating the tree using dojo.data.ItemFileReadStore and dijit.tree.ForestStoreModel. Once I ...
1
vote
1answer
3k views
How to provide JSON data to Dojo tree using Struts2 framework
I'm currently developing a web application using Struts2 framework. This application requires to dynamically update the objects on the screen based on data received from another application.
At the ...
1
vote
1answer
597 views
Completely wipe out the dijit (dojo) tree from memory and free its placeholder
I begin with piece by piece of code so that the problem description becomes clear.
I have a piece of HTML code as:
<div id="center" class="column" dojoType="dijit.layout.TabContainer">
...
1
vote
0answers
297 views
Filter a Dojo 1.4 Tree using criteria
Using Dojo 1.4 and the 'dojox.data.AndOrWriteStore' (for complex queries support).
I have a Tree that loads its hierarchical json data from a server. Now, I want to filter what gets to be displayed ...
0
votes
1answer
1k views
dijit.Tree from XML
I've been trying to get a Tree to work using my xml. But i'm like stuck without any clue as how to move ahead. I've tried quite a few things, which i've tried and would mention here.
Background: ...
0
votes
2answers
4k views
how to change the icon of leaf node in dojo tree?
I have created a tree containing information about server and its VMs.
I want to change the icon of VM to green if the VM is power on or to red if the VM is poweroff.
How to achieve this?
1
vote
3answers
3k views
How to add a new node to a dijit.Tree
I want to add a new node to a dijit.ree as a sibling of the currently selected node. I've found sample code (I'm new to dojo) that adds a new item to the tree using the newItem method of ...
4
votes
1answer
769 views
Setting dijit.Tree cookie for all pages
I'm using the same dijit.Tree view over several pages in our application, and I'd like to have the cookie saved for the server name, instead of the folder name.
Right now I've got 3 pages and 3 ...
2
votes
0answers
292 views
Dojo treemodel- adding large number of items
I am trying to add a large number of items (100+) to my tree via ForestStoreModel by calling newItem in a loop. This seems to be quite slow and locks up the browser. Is there any way I can do ...
0
votes
1answer
1k views
dijit tree insert and delete nodes
Has anyone got a working example on howto insert and delete nodes in a tree that is directly connected to a datastore (FileItemWriteSotre) without explicit declaring a Model?
I tried everything I ...
1
vote
1answer
3k views
How to add nodes to a dijit tree on the fly
Basically what I have is a tree with 3 nodes, created like so:
for (var i=0; i<response.length; i++) {
response[i]["type"] = "project";
}
var data = {
...
0
votes
2answers
1k views
Dojo tree selected node
Upon creating a tree from a store in dojo, it seems to pre-select the top node in my tree; does anyone know how to stop this from happening?
0
votes
1answer
1k views
Adding attributes to a dojo tree node on creation
I'm using a dojox.data.QueryReadStore to populate a dijit.Tree dynamically on expansion of each node. When each of the child TreeNodes is created, I'd like to put a custom attribute on it.
How do I ...
2
votes
4answers
2k views
Adding HTML in a dojo Tree label
I have a dojo dijit.Tree, and I want to be able to put some html in the labels. To do this, I created an function called getCustomLabel and assigned it to the tree getLabel attribute:
tree = new ...
0
votes
2answers
984 views
Dijit Tree and postCreate event (dojo 1.3)
I have managed to write a function that focusses a given node. Now I want to call it after tree creation. Since I construct the tree with php an send it via AJAX, I want to send the node to focus with ...
0
votes
1answer
282 views
Problem with dojo tree
I'm trying to get the dojo tree widget working. It works with a small json object, but when i try it with a large json object it goes wrong. There is no error, just the root node. Is this a normal ...
2
votes
2answers
3k views
Dojo Tree Refresh
Using Dojo 1.3, after adding a child (i.e. folder or item) to a tree, is there a way to have it reflected immediately via refresh or some other method?
