data trees

0
How can i display a data tree in Mendex, this tree will be used to display parent/child node relationships of data. 
asked
3 answers
0

Dear Brian,

Please check the app store. https://appstore.home.mendix.com/link/app/1356/

Its an old beast, avoid it if you can https://appstore.home.mendix.com/link/app/294/

Please note that there are different providers and support levels n the app store content.

Cheers, Andries

answered
0

If you only want to show one parent-child relation, on a page ad these items:

  • a datagrid showing the list of parents
  • a dataview showing one parent (listen-to the first datagrid)
  • a datagrid in the parent's dataview showing the children of the parent over association

 

If you are looking for a n-level datatree, you might want to feed the data to jquery.dataTree.min.js or this you need to add a javascript-widget to the page and gather the data in the form needed by the jquery-plugin.

answered
0

You can also opt for the widget I created, based on the D3 library:

https://appstore.home.mendix.com/link/app/30428/

It also comes with a test project which is completely setup with dummy data already:

https://appstore.home.mendix.com/link/app/30429/

 

answered