New issue report by bushido.ms:
What steps will reproduce the problem?
1. Add the date picker to root panel.
2. Try to select a date from the popup calendar.
What is the expected output? What do you see instead?
The next day. Autocompletes with 4 on Firefox. Did not try on IE o Safari.
What version of the product are you using? On what operating system?
Linux and MacOS.
Attachments:
Pantallazo-1.png 111 KB
Issue attributes:
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 by acorvetto:
Possible workaround:
change method Date addDays(Date date, int days) in
org.zenika.widget.client.util.DateUtil to
public static Date addDays(Date date, int days) {
return new Date(date.getTime()+days*24*60*60*1000);
}
i had the same problem and it seems to work now.