Change Save button to Submit in FORM type in APPSheet

HI,

Is it possible to rename the Save button to Submit in Form?

THanks,

Helen

 

Solved Solved
0 5 870
1 ACCEPTED SOLUTION

In UX, localize, you can set an expression like

IF(
 CONTEXT("View") = "the name of your view",
 "Submit",
 "Save"
)

TeeSee1_0-1657677946753.png

 

View solution in original post

5 REPLIES 5

In UX, localize, you can set an expression like

IF(
 CONTEXT("View") = "the name of your view",
 "Submit",
 "Save"
)

TeeSee1_0-1657677946753.png

 

You can also use CONTEXT("ViewType") = "Form" to change the save button for all forms.

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

Thank you! it works.

Sir, how to do the same for 2 diffrent tables.

IF(
 IN(CONTEXT("View"), LIST("view1", "view2")),
 "Submit",
 "Save"
)
Top Labels in this Space