v8.0 - How to do a direct link to a component in Web Designer

Hello Experts

I have a custom module in the front end (CCC_MyComponent)

Is it possible to generate a URL for it for users to be directly taken to that component? 

Basically I'm building a module only to be used in our lower environments, and I dont want this to be transported accidently. For this, I have this created a module and enabled the tick for Allow quick navgation, but Im not sure how to actually navigate to this component with a URL directly - is this even possible?

I tried something like this but it just went to homepage after authentication (role based)

myserver/.../page.axd & ContextId=CCC_MyComponent 

This module is not attached to any menu item

Thanks

Kin

Parents
  • Hi Kin,

    As you mentioned, you will need to make sure that the following boolean is checked on the root of the module

    You will then be able to navigate directly to:
    https://<yourOneIDWebPortal>.com/identitymanager/page.axd?ContextID=CCC_MyModule

    You could also provide params in this too:
    https://<YourOneIDWebPortal>.com/identitymanager/page.axd?PARAM_ID=4553633121&ContextID=CCC_MyModule

    Ryan

Reply
  • Hi Kin,

    As you mentioned, you will need to make sure that the following boolean is checked on the root of the module

    You will then be able to navigate directly to:
    https://<yourOneIDWebPortal>.com/identitymanager/page.axd?ContextID=CCC_MyModule

    You could also provide params in this too:
    https://<YourOneIDWebPortal>.com/identitymanager/page.axd?PARAM_ID=4553633121&ContextID=CCC_MyModule

    Ryan

Children