Hi Benjamin,
You can create a javascript which accepts a string parameter,
in the java script you can this code:
window.open(url, "_blank");
and pass the URL inside the javascript,
now, on the click of the link, you can call a nanoflow, and use this javascript action in the nanoflow.
Let me know, if you have any issues,
Hope it helps!
Seems impossible currently, but you might want to vote for the idea which requests a implementation of said feature: https://community.mendix.com/link/spaces/app-development/ideas/4674
Hi,
By default, Mendix navigation (buttons, nanoflows, page opens) is handled client-side in a SPA manner, so standard browser actions like right-click → open in new tab are not supported.
If you need this behavior, you must use a real URL-based link instead of Mendix navigation actions.
Working approaches:
Then users can right-click and open in a new tab.
/link/myPage?id=...
This enables:
What will NOT work:
Right-click/open-in-new-tab is only possible when using real URLs. In Mendix, this requires using Link buttons with Deeplink-based navigation instead of standard page or microflow navigation.