- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2016 08:17 PM
Hi,
I have a record producer and I want to get the value of the variable to an Order guide on Submit of a button. How do I get the value?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-16-2016 06:20 AM
Hi Mary,
You can use below solution if you can't find OOB functionality :
Use HTML5 localStorage or sessionStorage where on change of variable (record producer) client script, you can set the value which can be accessible in another page.
//Example of LocalStorage
// Store
localStorage.setItem("lastname", "Smith");
// Retrieve
console.log(localStorage.getItem("lastname"));
Please visit below site for more info.
http://www.w3schools.com/html/html5_webstorage.asp
Regards,
Chirag
Mark Correct if this solves your issue and also hit Like and Helpful if you find my response worthy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-16-2016 06:20 AM
Hi Mary,
You can use below solution if you can't find OOB functionality :
Use HTML5 localStorage or sessionStorage where on change of variable (record producer) client script, you can set the value which can be accessible in another page.
//Example of LocalStorage
// Store
localStorage.setItem("lastname", "Smith");
// Retrieve
console.log(localStorage.getItem("lastname"));
Please visit below site for more info.
http://www.w3schools.com/html/html5_webstorage.asp
Regards,
Chirag
Mark Correct if this solves your issue and also hit Like and Helpful if you find my response worthy.