Siebel Object Interfaces Reference > Interfaces Reference > Applet Events >

Applet_ChangeFieldValue


The ChangeFieldValue event fires after the data in a field changes.

Syntax

Applet_ChangefieldValue(fieldname, fieldValue)

Parameter
Description
FieldName
A string representing the name of the field whose value changed
FieldValue
A string representing the new value assigned to FieldName

Returns

Not applicable

Usage

ChangeFieldValue fires after the data in a field changes, but not when a user moves to a different record without changing a value in the previous record. If a user changes the value in a field, and other dependent fields, such as calculated fields, change as a result, the event fires once for each field whose value changed.

Used With

Browser Script

Example

Here is a Browser Script example:

function Applet_ChangefieldValue(field, value)
{
   TheApplication().SWEAlert("Changed field: " + field + " to " + value);
}

See Also

Applet_ChangeRecord


 Siebel Object Interfaces Reference 
 Published: 18 June 2003