Listen-to functionality between data grids

0
My domain model contains of two associated entities: Customer and Order. I would like to have two data grids on one page: The upper one showing the customers and some related information and the lower one showing the open orders of the customer selected in the upper data grid. Is this possible in Mendix?
asked
1 answers
3

You can add a Dataview to your page that listens to the first grid. inside the dataview you can place another grid that shows the associated information (By association or xpath). If you want to display associated information in a grid, you need to have a dataview wrapped around.

answered