UpdateConditionals Method
The UpdateConditionals method runs when Siebel Open UI displays an applet. It uses the following syntax:
UpdateConditionals()
For example, the listapplet.js file contains the following code:
this.UpdateConditionals();
You can add the following code to the code that updates the physical properties and the HTML properties of the control:
this.GetPM().AttachPMBinding ("UpdateConditionals", function(){custom_code},{scope
: this});
where:
custom_code is code that you write that updates HTML controls. Siebel Open UI runs this code as soon as the proxy calls the UpdateConditionals method.
For information about where you add this code, see Adding Code to the Physical Renderer.