Skip to main content
1-Visitor
March 26, 2018
Solved

Can we create same child node for different parent nodes in tree widget

  • March 26, 2018
  • 2 replies
  • 1689 views

Hi,

I want to view the data in tree widget which has 2 parent nodes. I want to view the data in this way 

s1

|-- s2

    |-- s3

    |-- s4

s5

|-- s6

    |--s2

Best answer by PaiChung

In a Network you can't do this.

But you can try just creating the infotable with nodes setup the way you want and bind that to the tree widget

remember that in that setup

parent child

a top node is a CHILD without a parent.

so you would have

parent child

              s1

s1          s2

              s5

s5          s6

s6          s2

2 replies

PaiChung22-Sapphire IAnswer
22-Sapphire I
March 26, 2018

In a Network you can't do this.

But you can try just creating the infotable with nodes setup the way you want and bind that to the tree widget

remember that in that setup

parent child

a top node is a CHILD without a parent.

so you would have

parent child

              s1

s1          s2

              s5

s5          s6

s6          s2

1-Visitor
March 27, 2018

Thanks for the response.