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

  1. Navigate to the following folder:

    <Siebel_Install_Path>\AI\applicationcontainer_external\siebelwebroot\<language folder>\ISDData\<language folder>
  2. Open the lfs.xml file and enter the tooltip string as shown in the following example: <IDS_NEW_TOOLTIP>New Tooltip </IDS_NEW_TOOLTIP>

  3. Navigate to following folder:

    <Siebel_Install_Path>\AI\applicationcontainer_external\siebelwebroot\<language folder>
  4. Open the toolbar_buttons.xml file and locate the button tag for which tooltip is to be modified.

  5. Update the <TtolTip> tag for the selected button with the string tag created in lfs.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.