Siebel Open UI, Tools, Scripting and EAI (MOSC)

MOSC Banner

How to access the (field) value of a Control on an Applet in a Physical Renderer

edited Nov 30, 2018 12:38AM in Siebel Open UI, Tools, Scripting and EAI (MOSC) 3 commentsAnswered

Hello,

I have a Physical Renderer that I am working on, I am able to get the control, but I need to access the actual field data of the control. How do I do this?

...

    var ac_controls = this.GetPM().Get("GetControls");
    var stOAKStatus = ac_controls["OAKStatus"];
    var sOAKStatus = stOAKStatus.GetValue();
    var sOAKStatus2 = stOAKStatus.GetInputName();
    var sOAKStatus3 = this.GetUIWrapper(stOAKStatus).GetValue();
    var sOAKStatus4 = stOAKStatus.GetDisplayName();
    var sOAKStatus5 = this.GetPM().Get( "OAK Status" );
    if ( sOAKStatus == "Requested" )
     $("[name='" + stOAKStatus.GetInputName() + "']").css("color","orange");
    else
     $("[name='" + stOAKStatus.GetInputName() + "']").css("color","blue");   
            }
            SiebelJS.Extend(OAKEpicRFHStatus, SiebelAppFacade.PhysicalRenderer);
...

I've tried all the above and nothing seems to work,

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center