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:inputDateTime xmlns:calendar="http://www.manorrock.com/jsf/calendar" value="#{calendarBean.date}"/>
        <h:commandButton action="#{calendarBean.doInputDate}" value="Submit"/> <br/>
        <br/>
        Entered date: <h:outputText value="#{calendarBean.date}"/>
    </h:form>
                    

Actual demo



Entered date: Sat May 19 08:37:49 UTC 2012

Up