Hi,
I'm trying to use rich:calendar in "organiser" mode, not in datePicker mode with richFaces 3.3.3.
I take most of the code from the demo on exadel, but I need to browse back and forward...
My code :
<rich:calendar
popup="false" showApplyButton="false"
cellWidth="90px" cellHeight="90px"
boundaryDatesMode="scroll" showWeeksBar="true"
dataModel="#{calendarDataModel}"
id="organizer" showFooter="true">
<a4j:outputPanel layout="block" id="cell" >
<h:outputText value="{day}"/>
...
</a4j:outputPanel>
</rich:calendar>
Finally, it works partially, but the model is never refreshed and other month than the current are rendered as basic calendar view...
how to force rich:calendar to refresh from the model ?
Regards
I solved it by adding mode="ajax" !
regards