Genesys CTI User Forum
Genesys CTI User Forum => Genesys-related Development => Topic started by: Surendra on September 24, 2011, 12:21:07 PM
-
Hi
I am trying to change the name of the tab (Custom Data) in my GAD application.
For achieving this i changed the value of the tab name in Dico.properties file and restarted the GAD server.
But the changes are not getting reflected in the GAD screen :(
Is there anything else which needs to be modified? Can anyone help me on this.
Thx in advance.
-
Hi,
Name of tab can be entered (fixed) in custom.xml file. Please check if that's the case.
R.
-
Hi
What i m trying to do is change the name of the tab which is already existing ( Ex: Custom Data tab is already there i am trying to change the name of the same).
By using the custom.xml i am able to add new tabs, but not able to change the name of a tab which is already existing.
Regards,
Surendra
-
I had same problem but it get solved by modifying custom.xml file.
-
Hi
I am referring to the tab name by using the constant available and trying to change the display name to Customer Data using the below code , but its not changing the name of the existing tab ... its adding a new tab.
<gcn-resources>
<desktop>
<interaction-information>
<tabs>
<tab name="TAB_INTERACTION_INFORMATION_CUSTOM_ATTACHED_DATA">
<text>Customer Data </text>
</tab>
</tabs>
</interaction-information>
</desktop>
</gcn-resources>
-
There is no reference to a dictionary file therefore you can't change it manually as desired, maybe you will have to modify JSP files directly...
-
Hi Surendra,
Name of the tab is defined by following line in your custom.xml file
<text>Customer Data </text>
R.
-
[quote author=Surendra link=topic=6688.msg29181#msg29181 date=1318243916]
Hi
I am referring to the tab name by using the constant available and trying to change the display name to Customer Data using the below code , but its not changing the name of the existing tab ... its adding a new tab.
<gcn-resources>
<desktop>
<interaction-information>
<tabs>
<tab name="TAB_INTERACTION_INFORMATION_CUSTOM_ATTACHED_DATA">
<text>Customer Data </text>
</tab>
</tabs>
</interaction-information>
</desktop>
</gcn-resources>
[/quote]
Thanks surendrqa for sharing useful data. This is useful to me. Keep updating.
-
[quote author=René link=topic=6688.msg29219#msg29219 date=1318435753]
Hi Surendra,
Name of the tab is defined by following line in your custom.xml file
<text>Customer Data </text>
R.
[/quote]
Thx for your reply Rene
Please correct me if i am wrong in the below code
<gcn-resources>
<desktop>
<interaction-information>
<tabs>
<tab name="TAB_INTERACTION_INFORMATION_CUSTOM_ATTACHED_DATA"> //I am using the constant name already available in the above line to refer the Custom Data tab
<text>Customer Data </text>// In this line i am trying to change the display text of the tab
</tab>
</tabs>
</interaction-information>
</desktop>
</gcn-resources>
-
Yes, correct. However, I'm not sure if GAD allows you to change name of pre-defined tab.
R.