Re: It's great you are interested in the Siebel Open UI client, Do you have 'open' questions we can
Hi,
Is it possible to open a Pop up applet through PM/PR of a Form Applet, on click of a button?
I'm trying using below code in the PM file in the Init block, but it does not opens the Popup Applet.
this.AddMethod("Custom_Method_Name_behind_Button", myLogic, {scope: this});
function myLogic() {
var inp = theApplication().NewPropertySet();
inp.SetProperty(“SWEH”, “200”);
inp.SetProperty(“SWEW”, “800”);
inp.SetProperty(“SWETA”, “Contact List Applet”);
inp.SetProperty(“SWEM”, “List”);
this.GetPM().ExecuteMethod( “InvokeMethod”, “ShowPopup”, inp);
}
Thanks