title | category | tags |
---|---|---|
Create Your First Microflow: Hello World! |
Logic & Business Rules |
Mendix uses visual models called microflows to define the logic of your application. Microflows are visual ways of expressing what traditionally would be written in code. This how-to explains how you can create a very simple "Hello World" microflow.
This how-to will teach you how to do the following:
- Create a menu item
- Create and edit a microflow
Microflows can be triggered in many different ways (for details, see Trigger Logic Using Microflows). For this how-to, you'll be using a menu item to trigger the new microflow.
To create a menu item, follow these steps:
- Open the Navigation editor, add a menu item in the desktop navigation settings, and enter the caption of Hello World:
- Click Select... in the Target section of the New Menu Item dialog box to open the Select Navigation Target pop-up window:
- Select a module and click New:
- Click Create a microflow to connect a new microflow to this menu item.
- Name the new microflow HelloWorld.
- Save the new menu item by clicking OK.
To edit the new microflow, follow these steps:
-
Open the new microflow by right-clicking the navigation item created in 2 Creating a Menu Item and select Go to target from the context menu:
-
Open the Toolbox in the bottom-right corner of the Modeler:
You can also open the Toolbox from the View menu:
-
Drag a Show message action from the Toolbox to the line between the green start even and red end event, which will insert a show message action activity:
-
Double-click the message activity to open the Show Message properties editor.
-
Run the application locally and click View App to see the application in your default browser:
-
Locate the new navigation item in the menu bar and click it to see the message.
- How to Define Access Rules Using XPath
- How to Trigger Logic Using Microflows
- How to Create a Custom Save Button
- How to Extend Your Application with Custom Java
- How to Work with Lists in a Microflow
- How to Optimize the Retrieve Activities
- How to Configure Error Handling
- How to Optimize Microflow Aggregates
- How to Extract and Use Sub-Microflows