to create a master details

0
I want to create Problems object and also want to create multiple answer which are directly related to Problems. and when i open a problem details also want to show all list of answers of that perticular problem. plz sugest me how i do this.......i m new in mendix Thanx in advance.
asked
3 answers
0

Dataview on Problems with Tabgrid or Template grid for answers.

You might want to go through tutorials etc for the real basic stuff

answered
2

Here's an example: Mendix - Getting started with Emp Dept

answered
1
  1. Create an Answer and Problem entity.
  2. Draw an association from Answer to Problem. Double click.
  3. Click on -, make it a reference set.
  4. On a problems edit form add a datagrid
  5. Either set datasource to association or set the XPATH constraint to [Anwer_Problem=[%CurrentObject%]
answered