SetUpdateConditionals Method

Siebel Open UI calls the SetUpdateConditionals method when the Siebel Server sends change selection information or Can Invoke method notifications to the client. It uses the following syntax:

this.SetUpdateConditionals(condition); 

where:

  • condition is true or false.

For example, the following code resides in the applet.js file:

this.SetUpdateConditionals(true); 

You can add the following code in the physical renderer to the end of the UpdateConditionals method. This placement makes sure Siebel Open UI runs UpdateConditionals before it runs SetUpdateConditionals:

this.GetPM().ExecuteMethod("SetUpdateConditionals", false); 

For more information, see Notifications That Siebel Open UI Supports.