Siebel Object Interfaces Reference > Browser Scripting >

Applet Methods for Browser Script


Table 71 lists a summary of the applet methods' syntax.

Table 71. Applet Methods Syntax Summary
Method
Description
Syntax

ActiveMode Method

Returns a string containing the name of the current Web Template mode.

var oApplet;
var mode = oApplet.ActiveMode();

BusComp Method

Returns the business component that is associated with the applet.

var oApplet;
var busComp = oApplet.BusComp();

BusObject Method

Returns the business object for the business component for the applet.

var oApplet;
var oBusObject = oApplet.BusObject();

FindActiveXControl Method

Returns the ActiveX control whose name is specified in the argument.

var oApplet;
var oControl;
oControl = oApplet.FindActiveXControl
(controlName as String);

FindControl Method

Returns the control whose name is specified in the argument.

var oApplet;
var oControl;
oControl = oApplet.FindControl(controlName as String);

InvokeMethod Method

Calls an argument-specified specialized method.

var oApplet;
var outPs;
outPs = oApplet.InvokeMethod(MethodName as String, inputPropSet as PropertySet);

Name Method

Returns the name of the applet.

var oApplet;
var name = oApplet.Name();

Siebel Object Interfaces Reference Copyright © 2008, Oracle. All rights reserved.