Jump to content

Passing Value From Results Page Without Using Query String?


Recommended Posts

If I understand correctly, you can use AutoSubmit on Deatils page of your Results DataPage.

The idea is: a user clicks "View Details" on the Results DataPage, Details page is auto submitted and send parameters to "truly" Details DataPage.

 

Please follow the next steps:

On the Results DataPage, go to Details page and add fields that you want to pass as parameters, and then check "On Exit Pass field value as parameter" check-boxes for every of them.

Select for any field Form Element "Text Field", it allows you to select "Go to a DataPage" on the Destination page.

Then add Header and Footer element, add to Header the following code:

<div align="center">
<p>Processing...</p>
</div>

And add to the Footer the following code


<br />
<script type="text/javascript">
  if(document.getElementById("caspioform")) {
  document.getElementById("caspioform").style.display = 'none';
document.getElementById("Mod0EditRecord").focus;  
setTimeout('document.forms["caspioform"].submit()',1000); } 
</script>

On the Destination page select "Go to a DataPage" and select your Details DataPage. If you use embedded DataPages, select "Go to a new page" and enter the address of the page, where your Details DataPages is deployed.

 

I hope, it helps.

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
Reply to this topic...

×   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...