i am useing wicket 1.3.3 

and try to follow the sample as below
HTML:
<input wicket:id="date" type="text" maxlength="10" />

Java:
      TextField dateField = new TextField("date", Date.class);
      dateField.setRequired(true);
      add(dateField);

      DatePicker dp = new DatePicker("datePicker", dateField);
      add(dp); 

but it complain do not have such constructor

can anyone tell me how to use the date picker???
-- 
View this message in context: 
http://www.nabble.com/why-the-datepicker-sample-doesn%60t-work-tp17457646p17457646.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to