Hi,
In DetailView of Project Module I want to change the button name of "Duplicate".
I want this modification to have only effect the DetailView"Project" Module, so all other Modules will stay the same. How to do this?
Great thanksss
Hi,
In DetailView of Project Module I want to change the button name of "Duplicate".
I want this modification to have only effect the DetailView"Project" Module, so all other Modules will stay the same. How to do this?
Great thanksss
Kind regards,
De Kleine Media
SugarCRM CE v.5.2.0h
Windows platform
MySQL v.5.1
phpMyAdmin - 2.11.2.2
Apache Server v.2.0
You have to edit the file custom/modules/Project/metadata/detailviewdefs.php, you will have to create it, copy the file from modules/Project/metadata/detailviewdefs.php and change the code for the duplicate button.
The code I find in my instance is this:
Here you can change what you needPHP Code:array( 'customCode' =>'<input title="{$APP.LBL_DUPLICATE_BUTTON_TITLE}" ' .
'accessKey="{$APP.LBL_DUPLICATE_BUTTON_KEY}" class="button" type="submit" ' .
'name="Duplicate" id="duplicate_button" value="{$APP.LBL_DUPLICATE_BUTTON_LABEL}"'.
'{if $IS_TEMPLATE}'.
'onclick="this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesDetailView\'; this.form.isDuplicate.value=true; this.form.action.value=\'projecttemplateseditview\'; this.form.return_id.value=\'{$id}\';"'.
'{else}'.
'onclick="this.form.return_module.value=\'Project\'; this.form.return_action.value=\'DetailView\'; this.form.isDuplicate.value=true; this.form.action.value=\'EditView\'; this.form.return_id.value=\'{$id}\';" {/if}'.
'"/>',
),
PHP Code:name="Duplicate"
Elisabeth Escribano
Webdeveloper
MADCAP verademing in ict
e.escribano@madcap.nl
Schapedrift 89
3371 JJ Hardinxveld-Giessendam
Netherlands
Tel 088 99 088 99
Fax 088 99 088 98
www.madcap.nl
Thanks a lot!
Change 'name' didn't worked for me.
But when you want to change the name you have to modify these lines;
title="Name whatever you want"
value="Name whatever you want"
Kind regards,
De Kleine Media
SugarCRM CE v.5.2.0h
Windows platform
MySQL v.5.1
phpMyAdmin - 2.11.2.2
Apache Server v.2.0
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks