Create a link to open a specific page in mendix app using Deeplink module

0
  I have a task inbox page.   Here for the last column in the table a User task page will open. I want to open that page directly using deeplink. Can any one please explain the steps that how to create a link using deeplink for opening a page that is present in mendix.
asked
1 answers
0

I'm confused as to why you would want to use deep link here and not use a MF that takes the context object and brings you to the right page. It would be much faster and simpler for the app. 

 

Anyways, if you want to know how to configure deep link, try reading the extensive documentation on it in the marketplace: https://marketplace.mendix.com/link/component/43/Mendix/Deep-link-module and also in the Mendix docs: https://docs.mendix.com/appstore/modules/deep-link#:~:text=The%20Deep%20Link%20module%20is,logged%2Din%20and%20anonymous%20users.&text=You%20can%20access%20a%20page,configured%20in%20the%20application%20model.

You should be able to create a unique link for every object using for example either the ID of the object or anything else that can be used as a unique key for every row. In the deep link, you configure a Microflow to be called when the link is used, where you retrieve the object using the unique id and send the user to the page you need using the context object. 

answered