Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi Team,
Suppose I have a below network:-
A(Parent)
B (Child of A)
C(Child of B)
where A ,B and C are ThingNames of ThingWorx Composer which is displaying on a tree widget in a mashup.
Let say things A,B and C has common property as 'displayName' and I want to show the hierarchy as per displayName, then how would I achieve this to show a network on a tree widget in Mashup.
For e.g., the result should be like:-
displayNameofA
displayNameOfB
displayNameOfC
(instead of ThingNames)
In short, I want to add some property in a network hierarchy instead of ThingName (or any other alternative instead of thingname)
Thanks in advance.
Solved! Go to Solution.
Usually I use either a loop or derivefields to add another (or several other) columns of information which then are used for display or state based definition etc.
Let's say you use GetNetworkConnections
then run a derivefields to add a column that is Things[treeinfotable.child].PropertyOfChoice
Now I have a new column with information from each of the things
Usually I use either a loop or derivefields to add another (or several other) columns of information which then are used for display or state based definition etc.
Let's say you use GetNetworkConnections
then run a derivefields to add a column that is Things[treeinfotable.child].PropertyOfChoice
Now I have a new column with information from each of the things