[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.nebula] Re: CalendarCombo Date Format

Solution: Create a DefaultSetting subclass with an overridden getDateFormat method and pass it to the CalendarCombo constructor.

   ISettings settings = new DefaultSettings() {
       @Override
       public String getDateFormat() {
           return "yyyy-MM-dd";
       }
   };