When you say “Does not load” Do you mean in the Lightning app builder? Or in the Run time?
Are you sure that the user attempting to view the SKuid page has at least the “skuid viewer” permission set?
Do you get any error message at all? Any errors in the browser developer console?
Can you post a picture of the problem state?
Hi,
Yes, we have the correct permission set, and we can see all the pages data except the page that has the page included in the lightning component. The page includes parameter Id is not passed into the page include. We tried Id={{&Param.id}} query string too.
Thank you
using this in the page include works! id={{$Model.YourModel.data.0.Id}}
Thank you.
Huh. It was a “skuid page include” being called from another page - that in turn was being nested in a lightning component. I’ll have to do some testing to make sure the page URL parameters (from the very outside most lightning page) is propagating correctly into the parent skuid page so it is available to be passed into the page include. (Is anyone else confused yet?)
Your strategy to use Model data, rather than a URL parameter is perfect. Well done.