So might be that I do not understand the concept of Global Hash Cookies.
I'm just trying to pass a value from one to another.
Therefore I put in the CustomeCode of form A the code:
Code: Select all
nuSetProperty('SIM_KEY', 'abc', true);
There I place in the CustomCode of Browse
Code: Select all
console.log("browse: " + nuGetProperty('SIM_KEY'));
Code: Select all
console.log("edit: " + nuGetProperty('SIM_KEY'));
I get browse: undefined on Browse and Edit Form.
If the Run object in Form A is configured as Target 'Current Breadcrumb',
I get "browse: abc" and when I click on a record to edit: "edit: undefined"
Btw. I get the same result when using nuSetProperty('SIM_KEY', 'abc'); in Form A.
I know that I can use sessionStorage for this, but from all explanation I've read
so far a Global Hash Cookie should achieve the same.
Where am I wrong?