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.

Action Buttons

Questions related to using nuBuilder Forte.
Post Reply
ricklincs
Posts: 121
Joined: Mon Aug 01, 2011 5:39 pm
Has thanked: 41 times

Action Buttons

Unread post 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.
kev1n
nuBuilder Team
Posts: 4581
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 76 times
Been thanked: 536 times
Contact:

Re: Action Buttons

Unread post by kev1n »

H,

Add this JavaScript in your form's Custom Code:

Code: Select all

if (nuFormType() == 'edit') {
   $('#nuSaveButton').val('Send');
   $('#nuCloneButton').val('Copy');
}
ricklincs
Posts: 121
Joined: Mon Aug 01, 2011 5:39 pm
Has thanked: 41 times

Re: Action Buttons

Unread post by ricklincs »

Thanks kev1n that was a quick reply. :D
Post Reply