Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

javascript framework for relationship visualization [closed]

Possible Duplicate: Graph visualization code in javascript? I need to create a dynamic visualization for nodes and their relationships in Javascript. What's the best framework to use? ...
4
votes
6answers
28k views

How to get a list of all child nodes in a TreeView in .NET

I have a TreeView control in my WinForms .NET application that has multiple levels of childnodes that have childnodes with more childnodes, with no defined depth. When a user selects any parent node ...
2
votes
4answers
60 views

HTML table DOM creates wrong number of child elements

I have atable in my code which I am using as a look-up table, by grabbing some values from based on the id of the . <table> <tr id="nas"> <td>1.34</td> ...
2
votes
1answer
96 views

Argument for IEnumerator on TreeNode

what is the valid argument for IEnumerator on TreeNode? i got the error on this line: IEnumerator ie = tn.Nodes.GetEnumerator(); in this method: private void parseNode(TreeNode tn) { ...
2
votes
2answers
158 views

Linked List in C

I'm having problem with double linked lists: I can't get data from nodes throgh another node. This way: node->prev->prev. But node->prev is fine. Anyone knows why? The code: /*Add value - right ...
1
vote
1answer
114 views

Adding and removing nodes from a JTree

I have a very basic JTree. As I am on a rush, I'd prefer not to use TreeModel if it is not needed. I wrote a SSCCE to expose the problem: Sometimes I add a node. Other times I remove them. When I ...
1
vote
1answer
119 views

Extend ANTLR3 AST's

With ANTLR2, you could define something like this in grammar definition file: options { language = "CSharp"; namespace = "Extended.Tokens"; } tokens { ...
0
votes
1answer
26 views

Given an array of values corresponding to the location of a leaf node, how would I access said node?

Note: I am unfamiliar with terminology regarding tree structures. Please forgive any oversights that may be a result of my ignorance! Practical Example Given an array as such: Array ( [0] => ...
0
votes
2answers
32 views

Undirected Graph adjacency (Computer Science)

I have an undirected graph G=(V,E) with nodes labelled 1, 2, 3,...,n, and a specific node k in V. I have two representations of this graph: Adjacency-Matrix and Adjacency-List How would I go about ...
0
votes
2answers
152 views

preventing duplicates when inserting nodes to treeview control

I want to create a hierarchical view of strings based on first two characters. If the strings are: AAAA,AAAA,BBDD,AABB,AACC,BBDD,BBEE I want to reate a treeview that looks like this: AA AAAA ...
0
votes
4answers
106 views

How to search for a node in a tree and return it?

I'm trying to search for a node in a binary tree and return in case it's there, otherwise, return null. By the way, the node class has a method name() that return a string with it's name...What I have ...
0
votes
1answer
482 views

UltraTree Infragistics - select all the nodes

anybody knows how to select all the nodes through of root? (UltraTree Infragistics)
0
votes
1answer
31 views

Type Passing / Changing

public abstract class ASTNode3 extends ASTNode { ASTNode child1; ASTNode child2; ASTNode child3; public ASTNode3(ASTNode c1, ASTNode c2, ASTNode c3) { child1 = c1; child2 = ...
0
votes
2answers
1k views

TreeNode Right Click Option

I am working TreeView and TreeView.Nodes in my C# GUI application and want to use the right click functionality on a few nodes in my tree. I have searched quite a bit but it seems like the ...
0
votes
1answer
917 views

Is Read-only property available in tree node in C#?

How to set tree node 'read only' in windows C#? Should not us disable, default.