uses a hamburger menu beginning on the homepage (after log in - use cc and cc). The global store code is in the homepage form .onshow() event - but no hamburger menus are displayed on any subsequent forms. I removed the login information - click the red button to go to the homepage. Here is the code on the homepage. Thoughts?
frmHome.onshow = function () {
NSBPage.appendChild(hdrHeader);
};
hmbrNav.onclick = function (h) {
if (typeof h == "object") return;
else
switch (h) {
case "Home":
ChangeForm(frmHome);
break;
case "Profile":
ChangeForm(frmProfile);
break;
case "Calendar":
ChangeForm(frmCalendar);
break
case "Camera":
ChangeForm(frmCamera);
break
case "Map":
ChangeForm(frmDirectionsMap);
break;
}
};
Very nice and useful videos about this topic. However, I included the project on my initial post because we did exactly what you show in your videos, and the global control (we used a header with a hamburger on it too) didn’t show on the other forms. It would be great if you could take a look.
I tried your project g - didn’t work. I tried to go from the homepage (with picture) to the Profile form - no hamburger menu on Profit form. Went from homepage to Calendar - worked Calendar had a hamburger menu. Then tried to go back to Homepage using hamburger - worked but homepage now has no hamburger.
Tried to use global store in class this week. It throws an error - doesn’t work. See attached project. I thought this was fixed? My Appstudio is up to date.
Please advise - Global Store.appstudio.zip (370.4 KB)