AttachPMBinding Method

The AttachPMBinding method binds a method to an existing method. Siebel Open UI calls the method that it binds when it finishes processing this existing method. The AttachPMBinding method returns one of the following values:

  • True. The bind succeeded.

  • False. The bind failed.

It uses the following syntax:

this.AttachPMBinding("method_name",function(){SiebelJS.Log("method_to_call");},{wh
en : function(conditional_function){return value;}}); 

where:

  • method_name is a string that identifies the name of a method.

  • method_to_call identifies the method that Siebel Open UI calls when it finishes processing method_name.

  • conditional_function identifies a function that returns one of the following values:

    • true. Calls the AttachPMBinding method.

    • false. Does not call the AttachPMBinding method.

For an example that uses AttachPMBinding, see Customizing the Physical Renderer to Refresh the Carousel.

For more information about using the AttachPMBinding method, see Configuring Siebel Open UI to Bind Methods and Life Cycle Flows of User Interface Elements.