OK worked this out and appears that variables created in a layout page session manager persist after you delete the Session Storage Manager from the layout page.
But would still like to know if this is what is supposed to happen?
Step A. Layout Page
Create a Session Storage Manager in the Layout page.
Add a variable to the session manager: “layout_variable”
Save
Step B. Content Page
Go to the content page (which uses the layout page in Step A.) and create a Session Storage Manager and add a variable: “content_variable”
On a content page element (an icon for example) Dynamic Events click action select the to “Set” the content page session manager.
In the “Name” drop down “Set Session Storage Item” list you see the layout page Session Storage Manager variable.
Step C. Remove the Layout Session Storage Manager
Go back to the layout page and remove the layout page Session Storage Manager.
Go back to the content page and repeat Step B. above and you will see the Variable for the removed Layout Page Session Storage Manager is still available.
It appears that you have to first remove the variable from the layout page Session Storage Manager first and then delete the layout page Session Storage Manager before it removes the session variable.
Are you able to take a look at my last comment - I understand how to use the session variables but not sure why a layout variable still persist after removal? Any ideas?
That's the way that I have been using session variables.
I am not sure, but I believe that client side session variables are controlled by the browser. If you want to see the result of your code, click on the Application tab and view the Session Storage. In this example, I have used Local storage.
It's 2025 and I can still confirm this is a bug.
I have a session manager in my layout page which I can't access its variables from my content page (yes, the content page is using the layout page)
I added a session manager to my content page, created "test" as a session variable.
Deleted the session manager, and I can see the "test" variable available from my layout page's session manager.
Only after adding session manager back to my content page and deleting "test", then deleting the content page session manager, did the "test" variable get removed.