Jump to content
  • 0

How to pass a parameter to a details page from a report listing


AccessNerd

Question

I have a list that when I click on the ID field it takes me to the details page. I've added an iframe in the details page, but it needs a parameter "@rid".  What I'd like to happen is that when I click the ID field on the listing, it stores that value in the "@rid" parameter in addition to opening up the details page. 

Anyone know how to accomplish something like this?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

If I got your inquiry correct, you want to pass a parameter inside a datapage that you have deployed on your details page as am Iframe.

If the parameter you wanted to pass is existing on the details page as a field or even as an external paramter, you can try simply adding it on the URL of the datapage you have deployed on the details page via Query string.

kind of like on this:

<iframe name="checkboxes or logic" title="checkboxes or logic" src="<dp URL>?RID=[@rid]">Sorry, but your browser does not support frames.</iframe>

replace [@rid] with [@field:rid] if the RID is a field value and not an external parameter.

 

Link to comment
Share on other sites

  • 0
On 6/16/2021 at 12:31 AM, NiceDuck said:

If I got your inquiry correct, you want to pass a parameter inside a datapage that you have deployed on your details page as am Iframe.

If the parameter you wanted to pass is existing on the details page as a field or even as an external paramter, you can try simply adding it on the URL of the datapage you have deployed on the details page via Query string.

kind of like on this:

<iframe name="checkboxes or logic" title="checkboxes or logic" src="<dp URL>?RID=[@rid]">Sorry, but your browser does not support frames.</iframe>

replace [@rid] with [@field:rid] if the RID is a field value and not an external parameter.

 

Yes, thank you. Using the [@field:fieldname] worked as desired. Really appreciate the help!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...