Form value in next page

maryc
Tera Contributor

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

1 ACCEPTED SOLUTION

chiragbagdai
Mega Expert

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.


View solution in original post

1 REPLY 1

chiragbagdai
Mega Expert

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.