Open Record in New Tab

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?

Scott,

Set your redirect url to something like this:

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

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?

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

Groovy!! Thanks Pat!

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

Score one more for Pat…