Siebel Interactive Designer API Reference > Pageset Functions > BuildWidget >

Check Box Input UI Controls


The syntax used to create a check box input UI control is:

ISS.BuildWidget("CHECKBOX",window,name)

Argument
Description

name

Defines the source of the content that populates the input UI control. For check box input UI controls, this is the name of a Feature table in the Interactive Designer project.

Notes

The Feature table associated with a check box input UI control defines whether the input UI control is checked or cleared. Therefore:

  • Only the first two rows of the Feature table are significant for this input UI control.
  • The first row represents the cleared state, and the value in its CODE column must be equivalent to false (F, FALSE, or 0).
  • The second row represents the checked state, and the value in its CODE column must be equivalent to true (T, TRUE,
    or 1).
  • When a value is specified in the DEFAULT column of one row, the state represented by the row is the state of the check box when the pageset is first loaded.
Example

The following sample code creates a check box input UI control:

<TR>

<TD><FONT face=verdana size=2><B>Personalized Plates
</B><IMG src=trans.gif width=10></TD>

<TD><SCRIPT>  document.write(ISS.BuildWidget ("CHECKBOX",window,"PLATE"));</SCRIPT></TD>

</TR>

Siebel Interactive Designer API Reference