Hello,
1) I do have 3 screens, I have added the "Delete(Trash)" Icon on 3rd screen and trying to get popup confirmation before deleting
2) I have added Yes, No buttons, Label, rectangle and grouped together, but I'm getting issue with the "Delete" icon, as shown below
Not sure what I'm missing here? any inputs, please
Solved! Go to Solution.
Yes, you cannot select a group of controls like that.
Here is what you need to do:
On the trash can Icon, set the OnSelect formula to the following:
UpdateContext({lclScreenAction:"Delete"})
Now on the RectangleDeleteConfirmation control, set the Visible property to the following formula:
lclScreenAction="Delete"
And for the remaining controls in your group, set the Visible property to the following formula:
RectangleDeleteConfirmation.Visible
Finally, in the Yes and No buttons, add the following formula to your existing formulas there:
UpdateContext({lclScreenAction:Blank()})
I hope this is helpful for you.
Yes, you cannot select a group of controls like that.
Here is what you need to do:
On the trash can Icon, set the OnSelect formula to the following:
UpdateContext({lclScreenAction:"Delete"})
Now on the RectangleDeleteConfirmation control, set the Visible property to the following formula:
lclScreenAction="Delete"
And for the remaining controls in your group, set the Visible property to the following formula:
RectangleDeleteConfirmation.Visible
Finally, in the Yes and No buttons, add the following formula to your existing formulas there:
UpdateContext({lclScreenAction:Blank()})
I hope this is helpful for you.
User | Count |
---|---|
121 | |
88 | |
88 | |
75 | |
66 |
User | Count |
---|---|
215 | |
180 | |
138 | |
96 | |
82 |