用于获取元素ID的Oracle Siebel Open UI命令

时间:2016-08-18 19:12:33

标签: javascript jquery oracle

我是Oracle Siebel Open UI的新手。我想知道如何获取动态生成的applet的id。我尝试使用this.GetPM()。获取(“ID”)。但是,它不起作用。在JQuery中我们有$('#test')('id');我们在Siebel Open UI中有什么?你能不能请这个。谢谢。

谢谢, 克里希纳

1 个答案:

答案 0 :(得分:0)

Hi Krishna,
          We can get the applet id in two ways,

    #1 --> We can take the current applet id using following code:
           this.Get("GetFullId");          (in PM file)
           this.GetPM().Get("GetFullId");  (in PR file)

    #2 --> We can take any of the applet id present in the view using below Code:
           SiebelApp.S_App.GetActiveView().GetApplet("Applet_Name").GetFullId();