Skip to main content
Nintex Community Menu Bar
Question

Table-row Popup not passing the row id

  • July 10, 2024
  • 3 replies
  • 15 views

Forum|alt.badge.img+2

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?

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+11

Charlie~

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

Thanks!
Karen


Forum|alt.badge.img+20

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.


Forum|alt.badge.img+2

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