Customized confirmation pop up message??

I searched a few similar posts, and also found an example AppSheet app called Confirmation Message:

Leonsk2037_0-1666681468302.png

Leonsk2037_1-1666681534247.png

 

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:

Leonsk2037_2-1666681562100.png

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!

Solved Solved
0 4 579
  • UX
1 ACCEPTED SOLUTION

 

 

@Suvrutt_Gurjar wrote:

Yes, you could do so in somewhat limited way by using localize option for the text


 

Suvrutt_Gurjar_0-1666720262013.png

View solution in original post

4 REPLIES 4

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")

 

Suvrutt_Gurjar_1-1666683673764.png

 

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.

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

 

 

@Suvrutt_Gurjar wrote:

Yes, you could do so in somewhat limited way by using localize option for the text


 

Suvrutt_Gurjar_0-1666720262013.png

It works! Thank you.