Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
I want to create a hierarchy structure, i have all the data in infotable, is it possible to bind an infotable to tree widget in ThingWorx. Which services we need to user for this activity.
Thanks.
Solved! Go to Solution.
Hello, yes! The structure of the InfoTable needs to be so that each node (which will be a row in the InfoTable), has its parent node in a second column. The Tree Widget will build it out of that.
For example:
nodeName | parentNode |
World | |
Europe | World |
Germany | Europe |
Munich | Germany |
Switzerland | Europe |
North America | World |
USA | North America |
You can drag the InfoTable output from any service that returns the InfoTable to the Tree Widget, then you need to select the columns for the Node and Parent, and specify what the top level node is (in my example, it is "World"). The names of the columns can be whatever you need them to be.
Hope that helps!
Hello, yes! The structure of the InfoTable needs to be so that each node (which will be a row in the InfoTable), has its parent node in a second column. The Tree Widget will build it out of that.
For example:
nodeName | parentNode |
World | |
Europe | World |
Germany | Europe |
Munich | Germany |
Switzerland | Europe |
North America | World |
USA | North America |
You can drag the InfoTable output from any service that returns the InfoTable to the Tree Widget, then you need to select the columns for the Node and Parent, and specify what the top level node is (in my example, it is "World"). The names of the columns can be whatever you need them to be.
Hope that helps!