i have added above columns, but i don't want to use connections like-
connections = Networks['NetwrokName"'].GetNetworkConnectionsWithTemplate();
i have a simple data table where i have added three columns- "from","to", "connectionType".
after querying i am getting data. but while binding with tree, i don't see any data in tree.
Note : i have tried with network connections, then tree is populated, but i don't want to bind network data, simply i want to display some data in tree view. so is there anyway where i can achieve binding tree view without getting network connection.
My tree has nothing to do with network connection, it simply need to bind data based on parent value like -
ClassroomA
-A
-B
-C
ClassroomB
-D
-E
-F
Regards,
Sandeep
The Tree widget is fairly picky, so do an output of a Network take a look at how that is structured.
you'll note it always starts with a top node that has the To but no From
and then the children under that in order, before switching to the next top node.
So if you mimic that structure, and then make sure you configure the properties of the Tree Widget appropriately, you should be fine.
Sandeep,
As an example, you could create a DataTable, and give data like on left:
Then you could set configuration in the Tree widget as:
Finally when you run the mashup, the Tree widget will load the data properly(as shown on top right picture). make sure that you have the the parentIs properly set which should be the id of its parents' Labelfield, and the leave the root node's parentId as "root" or something, and finally set it in the Tree widget configuration in accordance.
Hope this helps.
Br,
Anna
hi,
which service needs to be called in this case.