change text for master/detail add option

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
sticcino
User
Posts: 1043

change text for master/detail add option

Post by sticcino »

Hi,

Is it possible to change the text of a button that is a master/detail text combination.

Add Quotes Manager/Parts & Labour = "New Quote"

I can see it in the code debug, but can't figure out what object would contain that phrase.

any insight appreciated.

Johnny


mobhar
User
Posts: 11726

Post by mobhar »

Simply put the following code in "Startup Script" under "Client Scripts" -> "Table-Specific" -> "List Page":

$(document).ready(function() {
$('.ewDetailAdd').html('New Quote');
});


Post Reply