Page 1 of 1

Action Buttons

Posted: Tue Apr 20, 2021 5:14 pm
by ricklincs
Hopefully a simple question. Is there a way to rename the Action buttons for a single form? For example the 'Save' button to 'Send' and the 'Clone' button to 'Copy'?
Thank you in advance.

Re: Action Buttons

Posted: Tue Apr 20, 2021 5:18 pm
by kev1n
H,

Add this JavaScript in your form's Custom Code:

Code: Select all

if (nuFormType() == 'edit') {
   $('#nuSaveButton').val('Send');
   $('#nuCloneButton').val('Copy');
}

Re: Action Buttons

Posted: Tue Apr 20, 2021 5:20 pm
by ricklincs
Thanks kev1n that was a quick reply. :D