Hi!
How do I change the page in nodejs SPA internally without loading the layout page with javascript?
I tried to use window.location.href = "/page";
but this reloads the layout page too.
Hi!
How do I change the page in nodejs SPA internally without loading the layout page with javascript?
I tried to use window.location.href = "/page";
but this reloads the layout page too.
Anything you can do in dmx can be accomplished via dmx.parse() command in JavaScript.
An easy way to find the commas you want is to create it first in Wappler and then copy it from cove view into the parse command.
A browser goto will be something like this (on my phone so not tested):
dmx.parse("browser1.goto('some_page', true)");
Ah thanks will try it out!