ExecuteUIUpdate_Method
The ExecuteUIUpdate method updates objects in the user interface. It uses the following syntax:
ExecuteUIUpdate()
For example, the following code in the applicationcontext.js file updates objects that reside in the current applet:
applet.ExecuteUIUpdate();
You can configure Siebel Open UI to call the ExecuteUIUpdate method in the following ways:
In the physical renderer:
this.GetPM().AttachPMBinding("ExecuteUIUpdate", function(){
custom_code
});
In the presentation model:
this.AddMethod("ExecuteUIUpdate", function(){
custom_code
}, {sequence: true, scope: this});
For information about where you add this code, see Adding Code to the Physical Renderer.