Skip to main content
Nintex Community Menu Bar
Question

Open Record in New Tab

  • July 9, 2024
  • 6 replies
  • 32 views

Forum|alt.badge.img+8

I’m trying to create a button that will open a new browser tab with the record currently being displayed in the original tab.  I have the button and the action is set to “Redirect to URL”.  I created a new page and a new model for the new tab.  I need to somehow pass the record along.  Can this be done?

This topic has been closed for replies.

6 replies

Forum|alt.badge.img+18
  • 2192 replies
  • July 9, 2024

Scott,

Set your redirect url to something like this:

/apex/skuid__ui?page=YOUR_PAGE_NAME&id={{Id}}


Forum|alt.badge.img+8
  • Author
  • 98 replies
  • July 9, 2024

Thanks Jim!
What If I’m working with a Queue/Page Include and I need the button to be outside of the Page Include.  How can I pass the record ID that is currently open in the Page Include?


Forum|alt.badge.img+20

/apex/skuid__ui?page=YOUR_PAGE_NAME&id={{$Model.ModelInPageInclude.data.0.Id}}


Forum|alt.badge.img+8
  • Author
  • 98 replies
  • July 9, 2024

Groovy!! Thanks Pat!


Forum|alt.badge.img+18
  • 2192 replies
  • July 9, 2024

Thanks, Pat! I was just writing a long-winded post guessing that that was the answer. Now I know for sure!


Forum|alt.badge.img+17
  • Nintex Employee
  • 3766 replies
  • July 9, 2024

Score one more for Pat…