Page 1 of 1

Changing the text of Add and Save Buttons

Posted: Wed Oct 19, 2022 10:52 pm
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

Re: Changing the text of Add and Save Buttons

Posted: Wed Oct 19, 2022 11:00 pm
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');

Re: Changing the text of Add and Save Buttons

Posted: Wed Oct 19, 2022 11:22 pm
by mjd300
Awesome, thanks.