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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

JSF Duplicate DynamicComponent in ADF 12.2.1.4 after Migrate from 12.2.1.3

Maicol AriasAug 27 2024 — edited Aug 27 2024

Hi everyone,

In a ADF project 12.2.1.4 after migrate from 12.2.1.3, the next component will duplicate after i select any value in the List of Values.

This problem is only present in ADF 12.2.1.4.

Problem:

When i select any value in List of Values, the component will duplicate and the old component doesn't work, only work the second component.

JSF:

<af:panelFormLayout id="pfl1" maxColumns="3" rows="1"
binding="#{backingBeanScope.RejpBean.panelFormComponent}">
<af:iterator id="i1" value="#{bindings.DynamicView1.attributesModel.attributes}" var="attr"
rows="0">
<af:dynamicComponent id="dc1" attributeModel="#{attr}"
simple="#{attr.attributeBinding.hints.SIMPLE}"
disabled="#{attr.attributeBinding.hints.DISABLED}"
binding="#{backingBeanScope.RejpBean.capturadorDynamic}"
launchPopupListener="#{backingBeanScope.RejpBean.LaunchPopUpvalidateComponent}"
valueChangeListener="#{backingBeanScope.RejpBean.validateComponent}"
value="#{attr.attributeBinding.inputValue}">
<f:attribute name="NOMBREATT" value="#{attr.name}"/>
</af:dynamicComponent>
</af:iterator>
</af:panelFormLayout>

JDK: 1.8.0_211

JDeveloper: 12.2.1.4.42.190911.2248

Pictures of the Problem.

Comments
Post Details
Added on Aug 27 2024
2 comments
138 views