Hello Everyone,
I am working on ADF and Jdev12c2. One of core component of application is working fine in Jdev12.1.3 but after migration to Jdev12.2.1
Some of component stop working as expected.
For ADF Calandar core component: Following is the code for calendar component. This code is working fine in Jdev12.1.3 but not in Jdev12.2.1.
Is there any validation or rule change for this component.
There myCalendarBB is in sessionscoped. I also tried to with RequestScoped as well but not working. It is even not throwing any error.
<af:calendar value="#{reloStatusCalendarBB.reloStatusCalendarModel}" styleClass="AFStretchWidth"
inlineStyle="width:1055px" view="month"
**binding="#{reloStatusCalendarBB.relocationCalendar}"** id="c1"
calendarActivityListener="#{reloStatusCalendarBB.calendarActivityListener}">
\<f:facet name="activityDetail">
\<af:popup id="edit" contentDelivery="lazyUncached">
\<af:dialog id="d3" type="none">
\<af:outputText value="#{reloStatusCalendarBB.description}" inlineStyle="color: #003A6F; font-size: 9pt;"/>
\</af:dialog>
\</af:popup>
\</f:facet>
</af:calendar>
Whenever I refesh the page it having this component it blanks the entire page. Here one thing that I noticed is if ' binding="#{reloStatusCalendarBB.relocationCalendar}" attribute is removed
then it works fine. But its my core requirement it can not be removed. same thing working on previous version then why not in latest Jdev12.2.1.
See the screen shot

After Refresh.
