Fwd: Date Format on text field

2010-01-29 Thread Josh Kamau
Hi ; I have a text field that has a model of type java.util.Date. How do i set the format of how the components displays the date? I am using it with the datePicker . DatePicker datePicker = new DatePicker(); txtStartDate.add(datePicker()); Regards. -- Forwarded message

Re: Fwd: Date Format on text field

2010-01-29 Thread Martin Grigorov
see http://wicketstuff.org/wicket14/dates/ There is a link in the upper right corner Source code On Fri, 2010-01-29 at 11:29 +0300, Josh Kamau wrote: Hi ; I have a text field that has a model of type java.util.Date. How do i set the format of how the components displays the date? I am

Re: Fwd: Date Format on text field

2010-01-29 Thread Riyad Kalla
The good part: = DateTextField dateTextField = new DateTextField(dateTextField, new PropertyModelDate( this, date), new StyleDateConverter(S-, true)) = You'll need wicket-stuff On Fri, Jan 29, 2010 at 1:43 AM, Martin Grigorov mcgreg...@e-card.bgwrote: