2016-08-18 2 views
0

Oracle Siebel Open UI를 처음 사용했습니다. 동적으로 생성 된 애플릿 ID를 얻는 방법을 알고 싶습니다. 나는 this.GetPM()을 사용하여 시도했다. Get ("ID"). 그러나 작동하지 않습니다. JQuery에서 $ ('# test') ('id'); Siebel Open UI에서 우리는 무엇을 가지고 있습니까? 이것 좀 부탁해 줄래? 고맙습니다.Oracle Siebel 요소의 ID를 가져 오는 UI 명령을 엽니 다.

감사합니다, 크리슈나

답변

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(); 
관련 문제