Re: Date Format in Wicket

2009-05-27 Thread Eyal Golan
we used a general converter: @Override protected IConverterLocator newConverterLocator() { ConverterLocator locator = new ConverterLocator(); locator.set(Date.class, new CustomDateConverter()); return locator; } public class CustomDateConverter extends DateCon

Re: Date Format in Wicket

2009-05-27 Thread Martin Makundi
Setting user locale might help. ** Martin 2009/5/27 srinivas : > Hi, > > How to set the date format at the project level. I have dates displaying at > no. of locations in my project. > Currently i have to format the date patter in each and every page as the > default date patter of wicket is (MM/

Date Format in Wicket

2009-05-27 Thread srinivas
Hi, How to set the date format at the project level. I have dates displaying at no. of locations in my project. Currently i have to format the date patter in each and every page as the default date patter of wicket is (MM/DD/). But i want the date formate to be (DD/MM/). so if any one k