Ui-control - change page for specific tablet

Hi everyone,
how can I avoid that the change page with ui-control in one tablet don't change the page also in another tablet?
I spent yesterday in many tests thinking using socketIp but or it's not possible or I'm not good to write code.

Can you help me?

Have you looked at the complete message output of the ui-control node, it should contain a socketid. If you send this socket id the message should only go to the device with that socketid. Not tested it though.

I tried this ...

const socId = flow.get("socketId"); //saved when the dashboard is open

msg = {
    payload: "Heating",
    client: {
        socketId: socId
    }
}

return msg;

without success but I don't know if is correct ....

Can you create a minimal example flow so we can test.

How is the flow context socketid distinguished for each device, as when any device connects isn't the context over written.

When I open the dashboard with this function ...

if (msg._client.socketIp == "192.168.1.10") {
    flow.set("tab", msg.tab)
    flow.set("socketId", msg._client.socketId)
    flow.set("socketIp", msg._client.socketIp)
}

node.status(msg.tab + " - " + msg._client.socketId + " - " + msg._client.socketIp);

I have the data of the tablet and I was using those parameters to indicate the target tablet to send tab numer or page name ...

IS client missing the leading _

Thank you very much for help and patience, I'm going to whip myself ...