Row Context for page include url parameters?

I have a table. I want to open the record detail from a row action. I have the record detail set up in a separate page, so I am using a page include. I have tried a page include to the record detail page in a drawer and a popup. The problem is that the url parameters that I pass into my page include don’t have a row context. It is always displaying row 0 in the page include regardless of which row in the table I click. Is there a way to pass in row context into the url parameters of a page include?

There probably is another way, but if you had to you could do it with javascript. See Moshe’s comment here: https://community.skuid.com/t/update-page-include-from-table-row-action

Thanks Matt!

This can be done with javascript

<br />&#47;&#47;you can access any data from your row you need using params&#46;row&#46;fieldName<br />var oppId = params&#46;row&#46;Id;<br />panelsOnPage = skuid&#46;component&#46;getByType('includepanel');<br />&#47;&#47;goes through all includepanels and returns the one in your context&nbsp;<br />&#47;&#47;(additional filtering needs to be done if you have&nbsp;<br />&#47;&#47;multiple pageincludes per context)<br />panelInContext = panelsOnPage&#46;filter(<br />&nbsp; &nbsp;&nbsp;<br />&nbsp; &nbsp; function(panel) {<br />&nbsp; &nbsp;&nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; return panel&#46;context&#46;row&#46;Id == oppId;<br />&nbsp; &nbsp; })[0];<br /><br />&#47;&#47;set the query string and load the file<br />&#47;&#47;like Moshe's code in Matt's comment<br />panelInContext&#46;querystring='oppId='+oppId;<br />panelInContext&#46;load();<br />panelInContext&#46;querystring='oppId='+oppId;<br />panelInContext&#46;load();


But I couldn’t use this since I couldn’t get models with conflicting names to save. Once you add an additional pageInclude onto the parent page, all models from previous pageIncludes with the same page source are dropped. See the idea to vote on it here.
https://community.skuid.com/t/include-a-page-multiple-times-on-a-page-dynamic-model-names