UpdateQuickPickInfo Method
The UpdateQuickPickInfo method updates List of Values (LOV) information. Siebel Open UI calls it when it sends LOV information from the Siebel Server to the client. It uses the following syntax:
UpdateQuickPickInfo(field, true, arrValues, 0);
For example:
this.UpdateQuickPickInfo(field, true, arrValues, 0);
You can add the following code to the physical renderer:
this.GetPM().AttachPMBinding ("UpdateQuickPickInfo", function(){custom_code},
{scope:this});
where:
custom_code is code that you write that updates information in the LOV.
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.