Mendix 9.24.36: URLs not supported for pages with multiple parameters error

0
Hello Mendix Community, I'm using Mendix 9.24.36 and encountering an error when trying to define a URL for a page. The page in question has multiple page parameters defined (e.g., it requires two or more objects/values to be passed to it). When I attempt to set a URL for this page in its properties, I immediately receive the error: "URLs are not supported for pages with multiple parameters." This happens even if I'm not trying to include multiple parameters in the URL path itself. It seems the error is triggered simply because the page itself has more than one parameter. Is this expected behavior? How can I assign a descriptive URL to a page that inherently requires multiple parameters in Mendix 9.24.36? Thanks for any help!
asked
1 answers
0

In Mendix 9, page URLs have a single ID in them relating to a specific object, so you can only have a single parameter. 

 

In Mendix 9.24 your best option is to use the Deeplink module in the Marketplace, as you can customise the format of the URL. However, this is deprecated in Mendix 10.

 

If you can upgrade to Mendix 10, page and microflow URLs are far more flexible, and sound like what you need.

https://docs.mendix.com/refguide10/page-properties/#url

 

 

answered