2016-08-18 6 views
0

Oracle Siebel Open UIを初めて使用しています。私は動的に生成されたアプレットのIDを取得する方法を知りたい。私はthis.GetPM()を使って試しました。Get( "ID")。しかし、それは動作していません。 JQueryでは$( '#test')( 'id')があります。 Siebel Open UIでは何がありますか?あなたはこれで喜んでいただけますか?ありがとうございました。要素のIDを取得するOracle Siebel Open 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(); 
関連する問題