2 Replies Latest reply on Apr 13, 2011 2:08 PM by cmathrusse

    rich:calendar valueChangeListener

    cmathrusse

      I'm using RichFaces 4 and I'd like to add a valueChangeListener to a rich:calendar. I've added the following to my calendar:

       

      valueChangeListener="#{iiiApplication.processAccommodationCheckinDateValueChange}"

       

       

      and I added the following java code code:

       

                public void processAccommodationCheckinDateValueChange(ValueChangeEvent event) {

                    logger.entering("processAccommodationCheckinDateValueChange");

              UIComponent component = (UIComponent)event.getComponent(); 

       

                    logger.exiting("processCenterSelectValueChange");

                }

       

      but my java code never gets invoked. Is the valueChangeListener supported on the rich:calendar? If not, is there another way of getting the values as they are assigned?

       

      Thanks...