Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Changing the text of Add and Save Buttons

Questions related to using nuBuilder Forte.
Post Reply
mjd300
Posts: 21
Joined: Sat Oct 15, 2022 8:47 am
Has thanked: 1 time
Been thanked: 2 times

Changing the text of Add and Save Buttons

Unread post by mjd300 »

Regarding the action buttons above forms (Add to open, Save when add /editing), are these editable within nuBuilder? (images attached to clarify)

For example, I would like to change the text of the Add and Save buttons from Save to something else (for example "Add" -> "Add New Record").

I searched the Objects list, couldn't find the related button, I did a search in the forum first, couldn't see a similar question. Thanks
You do not have the required permissions to view the files attached to this post.
kev1n
nuBuilder Team
Posts: 4292
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 444 times
Contact:

Re: Changing the text of Add and Save Buttons

Unread post by kev1n »

All HTML elements (aka objects) can be manipulated with JavaScript.

Place in the form's Custom code:

Code: Select all

nuSetValue('nuSaveButton','Add New Record');
mjd300
Posts: 21
Joined: Sat Oct 15, 2022 8:47 am
Has thanked: 1 time
Been thanked: 2 times

Re: Changing the text of Add and Save Buttons

Unread post by mjd300 »

Awesome, thanks.
Post Reply