Hide or show nodes in dashboard

Hi,
I have a question. Is it possible to hide or show a node in a group in UI. I know you can hide and show groups. is this also possible for nodes?
it works for groups:

{
    "group": {
        "hide": [
            "TabName_GroupName"
        ],
        "show": [
            "TabName_GroupName"
        ]
    }
}

can the same be done for Node? For example

{
    "node": {
        "hide": [
            "TabName_GroupName_NodeName"
        ],
        "show": [
            "TabName_GroupName_NodeName"
        ]
    }
}

Thank you very much!

No, the only way is to put the node in its own group.

1 Like

You can give the node a class such as "hidden", maybe by passing it msg.className.
Then CSS in a template can hide it, though I think it still occupies browser real estate.

<style>
.hidden {
display: none;
}
</style>
1 Like

Thank you, I will try it.

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