How to Programmatically Hide a Specific Button in a Group Widget in Node-RED Dashboard?

Meanwhile the workaround:
If you do not use the disabled/enabled feature of the button for it's actual purpose

CSS (for all pages)

.nrdb-ui-button .v-btn--disabled{
    display: none;
}

And send msg.enabled = true to show and msg.enabled = false to hide the button.

2 Likes