Thursday, February 6, 2014

View Link between view objects between Master and Child with bind parameters:

refer to the blog:

http://www.jobinesh.com/2011/05/setting-bind-variable-value-for.html

Friday, January 31, 2014

enter a value that matches this pattern {2}

In my case i am using selectManyChoice. Facing this issue when i try to tab out. I have changed the attribute scope to pageFlowScope and it works fine now.

Monday, January 27, 2014

Layout Basics

http://www.oracle.com/technetwork/developer-tools/adf/learnmore/adffaceslayoutbasics-2046652.pdf

Get the value selected in a LOV in adf

    public void organizationCode(ValueChangeEvent valueChangeEvent) {
        // Organization Code from the Organization Code LOV from the parameters selection screen
        String valueSelected = (String)valueChangeEvent.getNewValue();
        System.out.println(valueSelected );
    }

Adjust the width of a selectOneChoice LOV

<af:selectOneChoice value="#{bindings.OrganizationCode.inputValue}" label="#{bindings.OrganizationCode.label}"
                              required="#{bindings.OrganizationCode.hints.mandatory}"
                              contentStyle="width:200.0px"
                              shortDesc="#{bindings.OrganizationCode.hints.tooltip}" id="soc1">

Sunday, January 26, 2014