FieldChange Method for Presentation Models
The FieldChange method that Siebel Open UI uses with presentation models modifies the value of a field. It returns nothing. It uses the following syntax:
FieldChange(control, field_value)
where:
control identifies the name of a control.
field_value is a modified value of the control.
For example, you can add the following code to the physical renderer:
this.GetPM().AttachPMBinding("FieldChange", function(control,field_value ){
custom_code
});
where:
custom_code is code that you write that sets the value for the control.
For more information about:
Where you add this code, see Adding Code to the Physical Renderer
An example that uses the FieldChange method, Displaying and Hiding Fields
Using this method, see Life Cycle Flows of User Interface Elements
The FieldChange method that Siebel Open UI uses with physical renderers, see FieldChange Method for Presentation Models