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: