Manorrock.com / Demo JSF

JSF Calendar Demo

How to get this working

To get this working on your own page, look below for the example snippet
used to get the demo on this page working.
    <h:form>
        <calendar:inputWeek value="#{calendarBean.date}"/>
        <h:commandButton action="#{calendarBean.doInputDate}" value="Submit"/> <br/>
        <br/>
        Entered date: <h:outputText value="#{calendarBean.date}"/>
    </h:form>
                    

Actual demo



Entered week: Sat May 19 08:38:35 UTC 2012

Up