Skip to main content

I have a table-row action that creates a pop-up. In the popup, I have an inline page using the “Query String: id={{$Param.id}}”. However the popup is not passing the id into the url. I’ve used developer tools to see the url that is being created for the popup. And the url is: https://skuid.MYSALESFORCE.visual.force.com/apex/include?id=&isinclude=true&page=MyIncludeHere

If you can see, the id does not have a value. What do I need to do to pass the id to the include url?

Charlie~

Can you give more detail on what you are trying to accomplish? Screenshots may also help … 

Thanks!
Karen


You can’t use {{$Param.id}} as this value is the what you’d find in the URL of the page.

What you want to do is include the Id in the model used in the table. Then use {{Id}} instead.


Thank you Pat. That is the answer I was looking for.