Passing URL Query String to Page Includes Broken (8.15.7)

I’ve seen a number of other posts with a similar issue (e.g. https://community.skuid.com/t/passing-url-parameters-to-a-page-include). They are however much older, and I believe this error to be introduced in the latest version as I’m only experiencing this now.

To Elaborate:

Providing a query string to a page include like this:


or this

or this

All yield the same result, that value NOT being available as {{$Param.example}} in the page include.

What’s more interesting is that if I manually add ‘&example=test’ to the parent page (the page that includes the page include)'s URL, the page include now registers the value in the $Param merge.

It is as though the Merge syntax on the include no longer references the included page’s url. Has something to cause this been introduced in 8.15.17?

What’s interesting is the distinction in the url that is ‘GET’ requested.

https://skuid.na11.visual.force.com/apex/ skuid__ui?page=Page -> Standard Page
https://skuid.na11.visual.force.com/apex/ include?example=test -> Included Page

I’m pretty sure this is how page includes have always behaved. I agree that this is not the best behavior, but I don’t think this is a regression. The {{$Param}} global merge syntax reads from the parent page’s parameters, not the parameters of the page include even if it is inside a page include. I know I’ve seen workarounds using UI-Only fields to store this information and that be accessed through global merge syntax. If anyone has examples of this working differently in previous versions, I’d love to hear about it.

As far as I remember, this is the way it’s always worked.

Agreed, Ben and Matt. I never experience the behaviour any different.

We use a number of Page Includes in pop ups, and prefer to have one common page for all pop ups of a given type. Querying models with URL parameters was half of the battle, we also needed access to that value elsewhere. I figured out a workaround for the time being.


1) Create a new model on the parent page, and add a UI only text field (called ‘value’). We happened to have a ‘Setup’ model already defined on our master page, so I used it.

2) Create a new model + UI Only text field (also called ‘value’) on the child page include. 

3) Create a new Inline javascript snippet on the child page. It is important that it’s inline as it needs to happen on page load. Enter the following code:


The model names and variable names can be anything, so long as they’re appropriately updated in the snippet. Also, I assume the interested data is in the first row of each model.

(function(skuid){ var $ = skuid&#46;$;<br />$(document&#46;body)&#46;one('pageload',function(){<br /> &nbsp; &nbsp;&#47;&#47;get the two models<br />var ParentModel = skuid&#46;model&#46;getModel('ParentModel');<br />var ChildModel = skuid&#46;model&#46;getModel('ChildModel');<br />&#47;&#47;get the first row of each model<br />var ParentModel_Row = ParentModel&#46;getFirstRow();<br />var ChildModel_Row = ChildModel&#46;getFirstRow();<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &#47;&#47;Set the inherted value<br />ChildModel&#46;updateRow(ChildModel_Row, {value : Setup&#46;getFieldValue(ParentModel_Row, 'value')});<br />});<br />})(skuid);


The model names and variable names can be anything, so long as they’re appropriately updated in the snippet. Also, I assume the interested data is in the first row of each model.