Save Button Should be Show as Login Button for some Pages

Hi All,

In the Login Panel, I Want to change the name of the button “Save” to “login”. If I am trying to change the Button name from UX->Localize then it will change the whole APP “Save” Button Name.

Kindly help me with the expression for specific to the login Page only.

Please use the CONTEXT(“View”) or CONTEXT(“ViewType”)functions to show the desired text for the views you wish.

https://help.appsheet.com/en/articles/2347640-context#h_00f1f41070

It sounds you are probably building your own login system. If so, please note appSheet does not recommend it.

https://help.appsheet.com/en/articles/948946-user-settings-appropriate-use-and-limitations

https://help.appsheet.com/en/articles/954491-require-sign-in-the-essentials#h_e363eabf20

1 Like

Hi,

Please refer to the attached. I wish to change the name of highlighted button, but if I change the name of save=login from UX->Localize then it is applied to whole app but i wish to change the button name for this page only.

1 Like

Hi ,

Were you able to take a look at the articles shared on CONTEXT() functions? Can you please try an expression with those functions?

Save : if(CONTEXT(“view”)=“Settings”,“begin session”,“Save”)

Cancel: if(CONTEXT(“view”)=“Settings”,“”,“Cancel”)

Thank You