Configuring Siebel Open UI > Customizing Styles, Applets, Fields, and Controls > Customizing Logos, Themes, Backgrounds, Tabs, Styles, and Fonts >

Customizing Browser Tab Labels


Siebel Open UI uses the view Title that you define in Siebel Tools to set the Browser tab label. If this Title is not defined, then Siebel Open UI displays the Id of the current record as the label. For example, it might display 2-HB474 as the Browser tab label:

This topic describes how to customize Siebel Open UI so that it displays the view Title as the label.

To customize Browser tab labels

  1. Open Siebel Tools.

    For more information, see Using Siebel Tools.

  2. In the Object Explorer, click View.
  3. In the Views list, query the Name property for the view that you must modify.
  4. Enter a value in the Title property or the Title - String Override property.

    For more information about setting these properties, see Configuring Siebel Business Applications.

  5. Compile your modifications.
  6. Test your modifications:
    1. Log in to the Siebel Open UI client.
    2. Navigate to the view you located in Step 3.
    3. Verify that the Browser tab label displays the value you entered in Step 4.

Using JavaScript to Customize the Browser Tab Label

This topic describes how to use JavaScript instead of Siebel Tools to customize the browser tab label.

To use JavaScript to customize the browser tab label

  1. Locate the following code:

    SiebelApp.S_App.GetActiveView().GetTitle()

    Siebel Open UI uses this code to get the browser tab label from the SRF. GetTitle returns the value of the Title property that you define in Siebel Tools. You can configure Siebel Open UI to override this value. For more information about GetTitle, see Properties of the Presentation Model That Siebel Open UI Uses for Applets. For more information about GetActiveView, see GetActiveView Method.

  2. Override the value that Siebel Open UI gets from the SRF. Modify the code that you located in Step 1 with the following code:

    SiebelApp.S_App.GetActiveView().GetTitle()
    "label"

    where:

    • label is a text string. Siebel Open UI displays this string as the Browser tab label.

      For example, the following code displays Registration Details as the Browser tab label:

    SiebelApp.S_App.GetActiveView().GetTitle()
    "Registration Details"

  3. Test your modifications.
Configuring Siebel Open UI Copyright © 2015, Oracle and/or its affiliates. All rights reserved. Legal Notices.