1 Reply Latest reply on Sep 23, 2008 10:19 AM by ilya_shaikovsky

    rich:calendar event handler Query

    josephotoole

      Hi

      Does anyone know what event handler I need to capture when the calendar is first created/rendered. I have added events so I can handle when the user navigates between the next and previous months as well as when they select a particular date. However, I cannot figure out what event I need to add to capture when the calendar is first rendered/created

      My calendar looks like:
      <rich:calendar popup="false" value="#{calendarController.activeDate}"
      valueChangeListener="#{calendarController.changeDateValue}"
      showWeeksBar="false"
      mode="Ajax">
      <a4j:support event="onchanged" reRender="calendarEntries"></a4j:support>
      <a4j:support event="oncurrentdateselected"></a4j:support>

      </rich:calendar>


      When the calendar is first opened, I need to display a table below the calendar, displaying events that exist for the current month. Hence, I need an event handler where I can query this information and make available to dataTable

      Thanks