Forum Post: RE: Change Button Text - Attach and New

  • Thread starter Thread starter Orchid Corpin
  • Start date Start date
Status
Not open for further replies.
O

Orchid Corpin

Guest
Hi Iramk, There is no current functionality that can do this since by default it is named after the Object name. Option is rename the related object and if you want to rename these buttons without renaming the object this can be an enhancement to the product which you can file it in the ideas page here. Here is also a workaround via code to rename the buttons which you can use. Change the following: New Section -- your section name of the related list view Attach Warehouse -- the attach button New Warehouse -- the attach button script $(document).ready(function() { $("div[name='Related Section'] a:contains('Attach Related')").text("Attach Object"); $("div[name='Related Section'] a:contains('New Related')").text("New Object"); }); /script Hope this may help. Regards, Orchid

Continue reading...
 
Status
Not open for further replies.
Back
Top