I want to open a 'Are you sure?' prompt with Yes and No options upon clicking a button, so that OnSelect is only executed upon clicking Yes.

I want to open a 'Are you sure?' prompt with Yes and No options upon clicking a button, so that OnSelect is only executed upon clicking Yes.
Hi @aj042
For your button to open the prompt. On the OnSelect property:
Set(gblPopUp, true);
Add in a container, and then add in your label and button controls to make your pop-up prompt. In the Visible property of the container:
gblPopUp
For your buttons in your pop-up, in the OnSelect property:
Set(gblPopUp, false);
Please tick Accept as solution if the answer is useful.
Thanks,