Mendix 7 is no longer supported unless you have Extended Support (for details, please contact Mendix Support). Mendix 7 documentation will remain available for customers with Extended Support until July, 2024.

Create Your First Two Overview and Detail Pages

Last modified: October 12, 2023

1 Introduction

This how-to explains how you can create overview and detail pages in Mendix.

This how-to teaches you how to do the following:

  • Create overview and detail pages
  • Configure navigation and security

2 Prerequisites

Before starting with this how-to, make sure you have completed the following prerequisite:

3 Creating an Overview Page

To create a new overview page and add it to your app, follow these steps:

  1. Right-click the module and select Add > Page.

  2. Click Responsive.

  3. Enter CustomerOverview in Page name.

  4. Select Sidebar_Full_Responsive as the navigation layout.

  5. Click Blank, then select the Blank page templateand clickOK**:

  6. Click Data Grid in the menu bar of the page builder to select the data grid widget:

  7. Click inside the page editor to create the data grid widget:

  8. Right-click the data grid and select Select Entity.

  9. Select the Customer entity in the Select Data Source pop-up window and click Select:

  10. Click OK to auto-fill the data grid with search fields and columns:

You should now have an overview page with a data grid like this:

3 Creating a Detail Page

  1. Right-click New on the data grid on the overview page and select Generate page.

  2. Select PopupLayout as the Navigation layout.

  3. Select Form horizontal and then click OK:

  4. Right-click New on the data grid on the overview page again and select Go to page:

    You should now have a detail page like this:

4 Navigation and Security

  1. Now create a navigation item for your overview page to start using it. For details on how to set up the navigation structure, see How to Set Up the Navigation Structure.
  2. If you switched on security for this application, you need to configure page access on both the overview and detail pages. For more information on configuring page access, see How to Create a Secure App.

5 Read More