Skip to main content
Nintex Community Menu Bar
Question

Link to pages are not skuidified record or object pages

  • July 10, 2024
  • 3 replies
  • 11 views

Forum|alt.badge.img+5

I have created some pages in skuid that serve as layers between a homepage and record detail pages on custom objects. To test these pages before deployment I have simply been using an href link to the address that appears on the preview page in the sandbox.

The question is… just like how you would navigate to a record detail page (), can you similarly navigate to a page without a Record Id?

This way I can be sure that it works the same way in sandbox as development.

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+17

I believe that if, while editing a page, if you click preview it will open the page in a new window and that URL is the URL of the page that you can use to access it directly without relying on button overrides.


Forum|alt.badge.img+18

Yes.

the redirect url should be something like this:
/apex/skuid__ui?page=MyPageName

And you can append any url params (for a record detail page, for example) with:
&id=My18digitRecordId

If you have multiple pages with the same name (but in different modules), you’ll need to include:
&module=MyPageModule


Forum|alt.badge.img+5
  • Author
  • July 10, 2024

Thank you! Exactly what I was looking for.