Access speciffic flow from UI

Hi,
In flow design url, I see the flow ID in the url and I can access speciffic flows using this ID, like
http://192.168.50.50:1880/#flow/**8ae237c33aaa34f1**

When I go to the UI I see some socketid. Is there a way to open speciffic flow from the UI?
http://192.168.50.50:1880/ui/#!/0?socketid=aMd2s7wl8g2GejSuAAAJ

Thanks

http://192.168.50.50:1880/ui/#!/0 <= the zero here is the tab number that will be displayed when you follow the link.

Just change that number to the tab you want to link to.

You can remove everything after the tab number from your link, as that part is generated dynamically after you connect.

1 Like

I tried - http://192.168.50.50:1880/ui/#!/1 but when access it, automatically redirects me to http://192.168.50.50:1880/ui/#!/0

In that case you will need to find out what (it) is doing the redirecting.

Do you have any ui control nodes for example ?

Yes I have in the flow0, in flow 1 i have only a button for test

What is the ui control node doing when it is triggered ?

Can you post the code here ?

var page = msg.payload;
if (page === "connect"){
    msg =
    {
        payload: {
            "group": {
                "hide": [
                    "tabstdt_menu-calibrare",
                    "tabstdt_menu-test-frana",
                    "tabstdt_test-frana-01",
                    "tabstdt_test-frana-02",
                    "tabstdt_text-frana-03",
                    "tabstdt_text-frana-04",
                    "tabstdt_menu-setari",
                    "tabstdt_menu-arhiva",
                    "tabstdt_test-frana-01",
                    "tabstdt_text-frana-02",
                    "tabstdt_menu-setari-1",
                    "tabstdt_menu-setari-date",
                    "tabstdt_cantar",
                    "tabstdt_anuleaza-test",
                    "tabstdt_motoare-1",
                    "tabstdt_testare-01",
                    "tabstdt_motoare-1m",
                    "tabstdt_rezultate-01",
                    "tabstdt_repeta-on",
                    "tabstdt_repeta-off",
                    "tabstdt_continua-on"
                ],
                "show": [
                    "tabstdt_menu-main"
                ]
            }
        }
    }
}
else {
    msg.payload = 0;
}
return msg;

this is the one that is triggered when open the page and I have others as well in the flow that hide/show different groups

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.