Modifying a Tooltip in the PCD Viewer
You can customize the tooltips that are displayed when a user places the cursor over the buttons in the PCD Viewer.
To modify a tooltip in the PCD viewer
-
Navigate to the following folder:
<Siebel_Install_Path>\AI\applicationcontainer_external\siebelwebroot\<language folder>\ISDData\<language folder>
Open the lfs.xml file and enter the tooltip string as shown in the following example:
<IDS_NEW_TOOLTIP>New Tooltip </IDS_NEW_TOOLTIP>
Navigate to following folder:
<Siebel_Install_Path>\AI\applicationcontainer_external\siebelwebroot\<language folder>
Open the
toolbar_buttons.xml
file and locate the button tag for which tooltip is to be modified.Update the
<TtolTip>
tag for the selected button with the string tag created inlfs.xml
as follows:
<toolbars>
<toolbar toolbarId="Detailer - Standard" defaultState="DEFAULT" firstChangeInternal="false" buttonId="1">
<respectStates>
<toolbar name="Detailer - Standard"/>
</respectStates>
<button buttonId="2">
<label/>
<toolTip>IDS_NEW_TOOLTIP</toolTip>
<icon/>
…….
</button>
</toolbar>
</toolbars>
Note: It is not recommended to remove buttons
from the toolbar_buttons.xml. However, you can hide buttons by adding
the DefaultState value to the ReadOnlyStates tag.