I want to remove 'Cancel'button in Appsheet

Hello, 

I making Staff Registration App by Appsheet.

I want that Staff cannot look at other Staff Information but everyone see then click 'Cancel'button.

I want to know how to remove 'Cancel'button.

Please Help me.

HH_Hirao_0-1655964363164.png

Solved Solved
0 4 114
  • UX
1 ACCEPTED SOLUTION

AFIK, you cannot turn off Cancel.

If you want to control access to certain data, you can use Security Filters.

https://support.google.com/appsheet/answer/10104488?hl=en

View solution in original post

4 REPLIES 4

AFIK, you cannot turn off Cancel.

If you want to control access to certain data, you can use Security Filters.

https://support.google.com/appsheet/answer/10104488?hl=en

Thank you very much.

I understand that I cannot turn off Cancel.

I will confirn that url. 

@HH_Hirao 

You may want to explore the below not so elegant and not so perfect workaround. 

Please note that with this workaround the word "Cancel" is not displayed on the form. However there is still very small space where the 'Cancel" button is normally shown in form, remains active for user's tap action. If user taps on that blank space, the form can still get canceled.

On a form, is it possible to hide the Cancel ... - Google Cloud Community

 

Capture.JPG

If this is what you're looking for, go to UX > Localize > Cancel (entry) and then edit the expression to "" (don't forget to click the right expression icon).

Or if you need to hide the 'Cancel' for some view only, use the following expression.

IF(CONTEXT("View") = "...the view name you need to hide Cancel...",
   "",
   "Cancel"
)

However users may still press on the invisible Cancel button but not quite easy.

Hope this trick might help.

Top Labels in this Space