I am trying to add a default value to the calendar in my jspf file using Woodstock component library:
<div class="rave-layout" xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
....
<webuijsf:calendar selectedDate="10-06-2011" styleClass="datefield" binding="#{user$.endCalendar}" columns="11" dateFormatPattern="dd-MM-yyyy" id="calendar2" required="true"/>
But it throws:
javax.faces.FacesException: javax.el.ELException: java.lang.IllegalArgumentException: Cannot convert 10-06-2011 of type class java.lang.String to class java.util.Date
exception. I know Woodstock is buggy, but is there a way to make this? Or adding selectedDate for default value is wrong in the first place?