Siebel Interactive Designer Administration Guide > Customizing the UI of Interactive Designer Pages >

About the UI Controls


Interactive Designer application functions, such as BuildWidget and BuildTarget, add Input UI controls and Output targets to show configuration choices and results on display pages. The LoadPageset function links between display pages in different pagesets.

Input UI Display Example

Figure 13 shows an example of an input UI display page. The input UI controls that appear on this page are created using the browser-based application function named BuildWidget and, depending on the type of control, a Feature table.

Figure 13.  Input UI Display Page
Click for full size image

The function call used to create the Engine Type list box in Figure 13 looks like this:

<script>document.write(ISS.BuildWidget("LISTBOX",window,"ENGINE",3,32,true));</script>

The function call indicates that the control type to create is a list box, LISTBOX, that displays the description values, DESC, in the Feature table, ENGINE.

Output UI Controls Example

Figure 14 shows the display page with output UI controls that result from a valid configuration.

Figure 14.  Output UI Display Page
Click for full size image

The output UI Control text and images on display pages are dynamically created using an Interactive Designer BuildTarget function. BuildTarget creates text and images based on the user's selections as well as the valid configuration information.

For example, the following code displays the text entered in the Your Name text box. When your selections match a valid configuration, this text appears in the Results page.

<script>document.write(ISS.BuildTarget("TEXT",window,
"CUSTNAME"));</script>

Siebel Interactive Designer Administration Guide