The treenode tag has no wiki summary.
0
votes
2answers
31 views
TreeNode right click to select not working
I am trying to fix a problem where if a user right clicks on a selection, it will not select/highlight it, and if, for example. "delete", is selected, it deletes the previous selection that was ...
0
votes
1answer
15 views
Save TreeView as xml with attributes and elements
I have a Windows Forms TreeView that needs to be saved as a xml file.
The structure of the TreeView is like this:
- Parent
- Child 1 (Any value)
- Child 2
- Child 1 (Any value for a child)
...
0
votes
0answers
16 views
Edit Header Node TreeView
I have a problem with changing the header node of a treeview because I have no idea how to do ...
In particular I have this class:
class Categoria : TreeViewItem
{
public int ID { get; ...
1
vote
1answer
20 views
Insert Existing TreeNodeCollection in TreeNode
Problem:
In the screenshot below, I have a node 300-9885-00X along with its TreeNodeCollection (in the red square). A little bit lower, we find the 300-9885-00X again, I want to insert the ...
0
votes
2answers
35 views
trying to add a node to a tree in java
For some reason the add(value) function doesn't want to work. I should be able to use Node and TreeNode to create a child. This isn't a balanced tree. I tried both Node and NodeTree and to make a ...
2
votes
1answer
60 views
unchecked only all child node in treeview
I'm using treeview , and I use from this code form checked and unchecked all Child Node when select parent or child node
private bool updatingTreeView;
private void ...
0
votes
1answer
30 views
Business Logic design solutions for constructing a JTree with a fixed number of constants
As part of my homework, I've been asked to create a JTree Model with a fixed set of constants (Authors and Books) Presented below is only a small subset of constants to include. Is there a more ...
1
vote
2answers
102 views
Delimiter-separated string to TreeView C#
I have an input stream something like this:
John
Peter
Vanesa
Vanesa.New
Josh
Josh.New
Josh.New.Under
...
I need to Add Nodes to TreeView Someting like this:
+Customers
+John
+Peter
...
0
votes
3answers
55 views
How to deep copy a tree?
I would like using my own Node class to implement tree structure in Java. But I'm confused how to do a deep copy to copy a tree.
My Node class would be like this:
public class Node{
private String ...
0
votes
1answer
53 views
c# treeview allow selection of last child element only
I have a treeview and I would like that the user will be able to select the last child only, in order to avoid problems when it is not selected an item, but a folder.
Has anybody any idea of if there ...
1
vote
1answer
91 views
C++ AVL tree recalculate height
im working on an implimentation of an AVL tree, and im having problems with my recalculate height function. When i call it i pass in the root of the tree and a variable that has a value of 1. ive ...
1
vote
1answer
131 views
AVL Tree Rebalancing in C++
I'm working on an AVL tree. I think I've got all of the rotate functions working correctly. I have a rotateleft, rotateright, rotateleftright, and rotaterightleft function. They all take a node as a ...
0
votes
0answers
84 views
ASP TreeView TreeNodePopulate causing stack overflow - infinite loop or recusion
I have a TreeView and in the TreeNodePopulate event i have code to fill it with files and folders from a specific path. The problem is is fires over and over again until I get a stack overflow. Can ...
1
vote
0answers
167 views
TreePanel not expanding ExtJS 3
This is my code -
var myTree = {
containerScroll: "true",
width: 500,
root: new Ext.tree.AsyncTreeNode({
id: "source",
text: "Root",
expanded: true,
...
0
votes
1answer
126 views
Ext JS 3.4.0 TreeNode - same icon for all nodes
I have a TreePanel in Ext JS 3.4.0. The nodes are loaded via JSON.
First of all I need to have the same icons for all the nodes, no matter if they are leafs or not. So I don't want to have the ...
0
votes
1answer
112 views
Building TreeNode from DataBase PrimeFaces
I need some example to build a TreeNode from DataBase for to build a MenuBar of PrimeFaces that needs a TreeNode. Here my code of the view of my menu.
I need build a TreeNode from my ManagedBean with ...
0
votes
2answers
412 views
Copy all Selected (Checked) TreeNodes from one treeview to another (include unchecked parents) C#
I've created a directory and file browser TreeView on the left side. I want the users to be able to browse the tree and check the files and directories that they would like to move to another ...
0
votes
0answers
35 views
C# LabelEdit treenodes error when not changed
If I want to edit the labeltext of the treenodes I double click on a treenode. The text gets selected, but if I just press enter or click directly on an other treenode it gives an error and it gets ...
1
vote
2answers
159 views
depth of a binary search tree
so I need to write a function in c++ that returns the depth of the tree. Im a bit confussed as to what this entails. It is the depth of each individual node or is it the depth of the entire tree for ...
1
vote
1answer
149 views
Automating expanding trees and selecting checkboxes with Watir
On a site, there is tree of nodes each associated with a checkbox. Those nodes then expand further into more checkboxes.
It looks similar to the following where [] represents a checkbox:
+ [] All
...
1
vote
1answer
127 views
Why are my child nodes not detected without the parent node being selected?
I have a treelist in my form with checkboxes enabled. I need to add anything checked to a list so I can write that list out. If I check any parent nodes (or highest level nodes) it includes them. If I ...
1
vote
1answer
115 views
Dynamically create nodes in JTree from a SQL query
I have a hierarchical structure like this:
Lot
|_Stages
|_Samples
Example:
Lot1
|_Stage1
|_Sample11
|_Sample12
|_Stage2
|_Sample21
|_Sample22
The idea is that the ...
1
vote
1answer
151 views
JTree shows same node as child node
I am using a custom TreeModel for my JTree. I have a root node and only 1 child node that is retrieved by a query from the database. I am able to populate the tree with the desired output.
However, ...
2
votes
1answer
118 views
Build a treeview based on character string
I'm pretty sure there is a simple answer to this, but it's killing me why I cant figure this out. I'm trying to populate a treeview based on a 5-character string.
public List<string> lst = new ...
1
vote
0answers
70 views
SmartGWT Migration to 3.x from 2.5, TreeNode throws ClassCastException
While migrating from old SmartGWT (2.5) to SmartGWT 3.1 we experienced a problem with TreeNode class. Here is an exception:
java.lang.ClassCastException: com.google.gwt.core.client.JavaScriptObject$ ...
2
votes
1answer
161 views
Animated gif image in tree node
I am trying to add an animated gif image to a tree Node but apparently JTree is the only component that cannot render the gif animation. Can you please advise me how to fix this?
import ...
-1
votes
6answers
74 views
Differences between TreeNode and TreeNode[]?
I´m a newbie, and I can´t view the difference between TreeNode and TreeNode[] the error that returns is
"Cannot implicitly convert type 'System.Windows.Forms.TreeNode[]' ...
0
votes
1answer
65 views
color tree node with 2 colors but not through the user
I want to color on part of tree node but not through the user (without using "selected node")
so DrawMode is not helping me.
I am using c#
For example I want that all tree nodes with space on the ...
0
votes
1answer
112 views
Enablle drag and drop of nodes only withing the same parent
I have a ExtJs (3.4) tree with multiple nodes, each nodes have multiples childs. I would like to allow drag and drop within each parents and I want to disable drag and drop of childrens of one parent ...
0
votes
0answers
102 views
How can I select a treenode with selemium IDE?
I have a hard problem:
I recorded with the Firefox-Plug-in Selenium IDE a web-test, where i click on a tree-node to select it and to see the meta data of the node.
Now when i run these test wit ...
1
vote
1answer
65 views
How to add Tag to a DefaultMutableTreeNode to make distinction among nodes?
I'm new to Java and i have a JTree that I want to add some nodes then I want to make a custom renderer for the control to make each node has a different icon and as I came from a c# background I want ...
4
votes
2answers
407 views
JTree set background of node to non-opaque
Please have a look at the SSCCE. How can I make the non-selected tree nodes' background transparent. At the moment the background of non-selected nodes is white. My cell renderer, however, should ...
0
votes
1answer
45 views
how to pass attribute useArrows from TreePanel to its Treenodes in extjs?
I am trying to access useArrows property of TreePanel from TreeNode .
Can anyone suggest me how to access TreePanel properties from TreeNode in extjs?
0
votes
0answers
24 views
jsoup getelementsmatchingowntext returning null for tree node element having ()
I am searching element in html page, element is present in tree node
The method used for identifying the element
inside method I am searching for the element , it is working for eg Testing node. ...
0
votes
1answer
79 views
Mysql merging queries
Hey guys I'm trying to join together two queries and am having an issue, maybe you can take a look, I have these two separate queries i'm trying to combine. There is a third join that will be in there ...
0
votes
1answer
142 views
How to pick a specific treenode expanded in C#
I am showing data in db by treeview. Every data has its own code and parent code (not a level). My showing algorithm step is like this
Step 1 : find data which parent code is null (Root node)
Step 2 ...
0
votes
0answers
54 views
RichFaces tree with column layout
I have a rich:tree which features various node of the following style:
[Key] [Value], where key is a label and value is an input box or a select box, etc.
I'd like to have all values in one column. ...
1
vote
2answers
362 views
Is the root node an internal node?
So I've looked around the web and a couple of questions here in stackoverflow here are the definition:
Generally, an internal node is any node that is not a leaf (a node with no children)
...
0
votes
2answers
161 views
Using jQuery can't dynamically add more than one element
I'm making a multi file uploader using ASP.NET, and i know that IE doesn't support multiple attribute inside <input type="file"/>.
So i wrote a jQuery code which checks if the user uses IE or ...
0
votes
0answers
75 views
Why does Ext.QuickTip closable:true have no effect?
The docs and examples for Ext.QuickTips/Ext.ToolTip say of the closable config:
"True to render a close tool button into the tooltip header"
However, when the Tip is applied to a TreeNode this ...
0
votes
1answer
290 views
One checked node at a time in TreeView
I have a TreeView populated from database with lots of node, and each node may have some children and there is no fixed role like 2 depthes, it may be very deep.
Imagine that the TreeView ...
0
votes
0answers
89 views
Get TreeNode reference on client side
Using <asp:TreeView> in ASP.NET 2.0, is there any way to get a reference to the <asp:TreeNode> that was clicked in JavaScript on the client side?
The only way I've found to initiate a ...
0
votes
2answers
187 views
JTree not displaying added nodes
I'm trying to create my first JTree, but when I try to add my nodes to the tree, the changes aren't taking effect and all that's displayed is a tree with some default nodes in it (colors, sports, ...
6
votes
1answer
455 views
how to reload a selected node of a tree
I need to reload a tree after deleting one of the leafs of a node. The problem of reloading the entire store is, it's too slow. That's why I just want to reload a node where its leaf is deleted.
I ...
2
votes
1answer
76 views
how to get value of a node where a leaf is dropped in a tree
I have a tree panel where a leaf can be dropped to a node. I want to get the value of that node where the leaf is dropped.
Doing this gets me the first node and not the node where I dropped the leaf
...
1
vote
1answer
292 views
Sencha Architect: Build a tree
How can I build a tree ins Sencha Architect? All what I found online was concerned with editing the code which is read-only in my case. What can I do about that?
Please help! I would really ...
7
votes
3answers
250 views
Creating a list for a Treenode
I know this must be real easy but I just can't get it to work... I am trying to make a List for extjs Tree by comparing two columns from differnt rows and putting them as a Node or a leaf accordingly. ...
1
vote
1answer
113 views
Implement List treenode for extjs tree
I have a table that has these data
State Cities
TX Houston
TX San Antonio
TX Austin
TX Austin
PA Philadelphia
PA Pitssburgh
PA ...
1
vote
2answers
163 views
Building JTree from strings
I have two strings node1/node2/node3/node4" and "node1/node2/node5/node6".... how can I build a ONE JTree in swing from this strings? Here is my Code that builds one string....
import java.awt.*;
...
0
votes
1answer
95 views
Java absolutely new root node
I've created a node class and a tree class. From main, I call suffixTree t = new suffixTree(string); It is on a while loop so it will always be variable t.
The problem is, I want to read an input ...







