Siebel Object Interfaces Reference > Browser Scripting >

Applet


Table 65 lists a summary of the Applet Methods syntax.

Table 65.  Applet Methods Syntax Summary
Method
Description
Syntax
Returns a string containing the name of the current Web Template mode.

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

Returns the business component that is associated with the applet.

var oApplet;
var busComp = oApplet.BusComp()

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

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

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

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

Returns the control whose name is specified in the argument.

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

Calls an argument-specified specialized method.

var oApplet;
var outPs = theApplication().NewPropertySet();
outPs = oApplet.InvokeMethod(MethodName, inputPropSet);

Returns the name of the applet.

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

Table 66 lists a summary of the Applet Events.

Table 66.  Applet Events Summary
Event
Description
Syntax
Called when the user updates a field value in the browser.

Applet_ChangeFieldValue (field, value)

Called when the user moves to a different row or view.

Applet_ChangeRecord()

Called after a specialized method or a user-defined method is invoked.

Applet_InvokeMethod (name, inputPropSet)

Triggered after an applet has loaded and after data is displayed.

Applet_Load()

Called before a specialized method for the Web applet is invoked or a user-defined method is invoked through oWebApplet.InvokeMethod.

Applet_PreInvokeMethod (name, inputPropSet)


 Siebel Object Interfaces Reference 
 Published: 18 June 2003