How to properly implement two-column layout in Form vertical template?

0
Hi everyone, I'm a beginner learning Mendix and encountered an issue while following tutorials: How to create a column layout (or achieve the page layout shown in the attached image) within a Form vertical page?   Attempted Solution: Added a second column next to the default one Inserted a Grid layout with: Top row: Text header Bottom row: List View Problems: The process feels overly complicated This approach seems wrong as it requires: Tedious manual configuration Additional setup for Save/Cancel buttons Main Questions: Is there a more standard or simpler way to achieve this two-column layout in Form vertical template while matching the attached design? What's the recommended approach to maintain native buttons while customizing the layout? Thanks in advance for your help! Best regards.                                                                                                                 
asked
1 answers
0

Add a data view for the team entity as top level object.

Add a layout grid with 2 columns divided 50:50 to the dataview.

Add a second row to the container and place text widgets in the first row.

In the second row place the fields for the team on the right and a listview or datagrid on the left.

Make sure the data grid shows the players over the association with the team.

Implement a microflow to validate the team object when saving and retrieve the players from the team and commit the objects for the player and the team.

When you need this kind of setup more often you might consider creating a layout for this purpose (see: https://docs.mendix.com/refguide/layout/)

 

answered