Edit Text on the Add Button

Hi

Using PHPMaker 2020
I have an add page setup as a contact page and it works fine - can I change the button Text from Add to Submit ?

Regards
John B

you can try something like this in your Client Scripts - Table-Specific - Add/Copy Page

loadjs.ready(“load”, function() {

// Startup script
$(‘.ew-submit’).html(‘Submit’);
});

Or, you may simply put this PHP code in “Page_Load” server event under the “Add Page”:

Language()->setPhrase(“AddBtn”, “Submit”);