Are you sure yes/no pop-up?

I did create an “helper” input_boolean and did create an action in NodeRED connected to it.
Now after toggling the input_boolean in de HA GUI, I like to see a kind of pop-up with a message like:
Are you sure yes/no?
So if no selected the action will not happen?

I did find this solution, but there is no pop up?
image

Is this possible in NodeRED in combination with the HA GUI? and how to programm?

It’s possible with this I think.

Thanks for the swift answer!
But I do not see how to use this?
I have already installed the browser_mod

There’s a service brower_mod.popup
With a button card you could call this service which prompts a popup and in your popup you’ll have the input_boolean which you can trigger.

thanks again.
I will dive into it

If you are initiating inside the HA UI, you could always put the confirmation there like this:

                tap_action:
                  confirmation:
                    text: Are you sure?
                  action: call-service
                  service: input_select.select_option
                  service_data:
                    entity_id: 'input_select.my_choices'
                    option: 'Yes'

Nice. Didn’t know that exists!
Way easier and you don’t have to use browser_mod!

Thanks for the answer.
It looks like its the answer i’m looking for, but I don’t understand how to use this?
I do have all my automation in NodeRED and I’m not used to Yaml.
Is this a sensor you made or so?
Where to put this code? And how to use in NodeRED?

I did find this page:
Actions - Home Assistant (home-assistant.io)
But I still do not understand what to do where

I did get it working using the HA-app to confirm

Good job. I was just about to send instructions.

I started with all my automations in Node Red, but gradually added HA automations and now only use NR for the really complex ones.

HA automations have gotten a lot better than they used to be. Just remember a single animation allows multiple triggers. Most of mine are mqtt, state, or webhook.

Could you please provide more details about what you’re trying to implement in Node-RED?