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.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Action Buttons
-
- nuBuilder Team
- Posts: 4305
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 445 times
- Contact:
Re: Action Buttons
H,
Add this JavaScript in your form's Custom Code:
Add this JavaScript in your form's Custom Code:
Code: Select all
if (nuFormType() == 'edit') {
$('#nuSaveButton').val('Send');
$('#nuCloneButton').val('Copy');
}