UpdateStateChange Method
The UpdateStateChange method handles notification updates. Siebel Open UI calls it when it sends notification updates from the Siebel Server. It uses the following syntax:
UpdateStateChange()
You can add the following code to the physical renderer:
this.GetPM().AttachPMBinding("UpdateStateChange", function(){
custom_code;
});
where:
custom_code is code that you write that handles state change updates from the Siebel Server. For example, updating the enable or disable state of a user interface control that the UpdateUIControls method of the physical renderer specifies.
For information about where you add this code, see Adding Code to the Physical Renderer.
For more information about using this method, see Life Cycle Flows of User Interface Elements and Notifications That Siebel Open UI Supports.