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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Action Buttons
-
- nuBuilder Team
- Posts: 4581
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 536 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');
}