Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Action Buttons

Questions related to using nuBuilder Forte.
Post Reply
ricklincs
Posts: 107
Joined: Mon Aug 01, 2011 5:39 pm
Has thanked: 33 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: 4305
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 446 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: 107
Joined: Mon Aug 01, 2011 5:39 pm
Has thanked: 33 times

Re: Action Buttons

Unread post by ricklincs »

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