Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ADF customization. bean resolved null issue..

Gopinath JayavelNov 30 2012 — edited Dec 3 2012
Hi All,

JDev Ver : 11.1.1.5

I have issue in adf customization. On page load I am getting bean 'test' resolved null.

I launched JDev in customization mode, and I added a attribute in jsff, and binded to the bean(request scope) defined in adfc-config.xml. PFB code


<mds:customization version="11.1.1.60.13"
xmlns:mds="http://xmlns.oracle.com/mds">
<mds:insert parent="pb1" position="last"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:f="http://java.sun.com/jsf/core">
<af:panelFormLayout xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
id="s1pfl1">
<af:panelLabelAndMessage xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
label="Middle Name" id="s1plam1" binding="#{test.s1plam1}">
<af:inputText xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
value="#{bindings.MiddleName.inputValue}" simple="true"
required="#{bindings.MiddleName.hints.mandatory}"
columns="#{bindings.MiddleName.hints.displayWidth}"
maximumLength="#{bindings.MiddleName.hints.precision}"
shortDesc="#{bindings.MiddleName.hints.tooltip}"
id="s1it2" binding="#{test.s1it2}">
<f:validator xmlns:f="http://java.sun.com/jsf/core"
binding="#{bindings.MiddleName.validator}"/>
</af:inputText>
</af:panelLabelAndMessage>
<f:facet xmlns:f="http://java.sun.com/jsf/core" name="footer"/>
</af:panelFormLayout>
</mds:insert>
</mds:customization>

Am I missing anything ?

Regards,
Gopi
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 31 2012
Added on Nov 30 2012
3 comments
287 views