javierdotnet / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 3 forks source link

Date picker one day off before 04.28.1980 #431

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Steps to reproduce:

1. Create an application with a DatePicker. 

2. Setup listener with Window.alert to display selected date:

datePicker.addListener(new DatePickerListenerAdapter() {  
  public void onSelect(DatePicker dataPicker, Date date) {
      Window.alert(date.toString());
  }  
});

3. Run application.

4. Select date highlighted by default. Message box popups up with expected
date.

5. Using the Month\Year selector panel, select April 28th 1980. Message box
popups up with expected date. Now click the 27th. Message box pops with
April 26th 1980 instead of the 27th. All dates prior to April 27th 1980 are
off by one...weird.

Using GWT-Ext 2.0.5 with Ext 2.0.2 on Windows XP

Original issue reported on code.google.com by micky.jo...@gmail.com on 7 Oct 2008 at 2:02

GoogleCodeExporter commented 9 years ago
fyi - only seems to happen in Hosted Mode

Original comment by micky.jo...@gmail.com on 7 Oct 2008 at 2:09