Hi Keuris Ogando Piron,
You can’t pass an enumeration directly between pages. Instead:
This is the standard way to show a selected enum result on another page in Mendix.
Hi,
Enumerations in Mendix are not data objects, so you cannot “retrieve” or pass them directly between pages like a list. The correct approach is to store the selected enum value in an object and pass that object between pages.
1. Create a helper entity
Create an entity (for example: SelectionHelper) with:
SelectedDate (Enumeration)2. First page (selection page)
SelectionHelperUser selects a value → stored in SelectionHelper/SelectedDate
3. Navigate using microflow
On button click:
SelectionHelper object4. Second page (display page)
SelectionHelper$SelectionHelper/SelectedDate
Since enums are static, if you want to show them as a list:
You cannot:
You must always pass it via an object (helper entity).
Store the selected enum value in a helper object and pass that object between pages using a microflow. That’s the standard and correct way to handle enumeration-based selection across pages in Mendix.