I searched a few similar posts, and also found an example AppSheet app called Confirmation Message:
The popup message in there has a text and one close button, however when I try to do exactly the same thing, it ends up being this:
I can customize that close at the bottom right by changing the close action name, but is there a way I can get rid of that NO at the left? Just curious lol, thanks!
Yes, you could do so in somewhat limited way by using localize option for the text “NO” by using CONTEXT() functions, something like
IF(CONTEXT(“View”)=“Open Orders_Detail”, " ", “No”)
However this " " blank then will be applied to all the actions in that view, which is a limitation. Also localization just hides the text. The “actionable” area on the pop up form is still active. So if the user hovers on that area and clicks , a navigation equivalent of “No” will still take place.
3 Likes
Sorry, can you specify more about where to put this IF? Do you mean in the Action > Behavior > Confirmation Message, or Action > Behavior > Only if this condition is true, or in Appearance? Thanks