Tien Nguyen Doan

Greenhorn
+ Follow
since Mar 29, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Tien Nguyen Doan

Thank you, I'll find a new way to resolve this problem.
Could you please explain your idea clearly?
In my opinion, I want to build a tree node look like this:
public class Node {
public int uniqueId;
public int parentId;
public String name;
public List<Node> children = new ArrayList<Node>();
public List<Node> parent = new ArrayList<Node>();
}

And Data table used to create chart as below:
UniqueId | ManagerId | Name

1 0 CEO
2 1 Director 1
3 1 Director 2
4 1 Director 3
5 3 Manager 1
5 4 Manager 1
6 2 Manager 2
7 2 Manager 3
8 2 Manager 4
9 5 Worker 1
10 5 Worker 2
11 6 Worker 3
11 7 Worker 3
11 8 Worker 3
12 6 Worker 4
12 7 Worker 4
12 8 Worker 4
13 6 Worker 5
13 7 Worker 5
13 8 Worker 5

But i don't know to render this chart to JSP by using struts tag?
Dear all,

I have to build organization chart with multi-parent. But I don't know how to make it in flex.
Please see attachment image.

I need help! Who can help me?

Thank you so much!
13 years ago
Dear all,

I have some troubles with organization chart with multi-parents.

Please help me to make this org chart.
13 years ago
Hi everybody,
I want to build a java struts tag and render org chart that has multi-parents, childs,... look like this:



Please, view the attachment image!

Thank you so much!


@Kuba Zygmunt:
I have read error carefully. But I don't understand why I cannot connect to "library" db in order to retrieve all records (select * from book). Data source is cached.
Hi all,
I have created a connection for Postgres as below:


But i got an errror:


I don't know why Database product name cached for DataSource [org.springframework.jdbc.datasource.DriverManagerDataSource@acb158]: name is 'PostgreSQL'. My expected result is "library"

Thank you,

Tien Nguyen