This is my application environment :
Java 1.5, Smart GWT 2.1, GWT 2.1
I have implemented a popup window to enter "add new" items screen. But the selected date from 'Show Date Chooser' is not showing correctly in the form, it shows the earlier date of selected date.My code is as follows,
DateTimeItem dateItemDateOrdered = new DateTimeItem("dateOrdered", "DATE ORDERED");
dateItemDateOrdered.setWidth(130);
DateTimeItem dateItemDateWanted = new DateTimeItem("dateWanted", "DATE WANTED");
dateItemDateWanted.setWidth(130);
I use the date chooser in tabs, listgrids similarly, but there was no issue on those places.
Java 1.5, Smart GWT 2.1, GWT 2.1
I have implemented a popup window to enter "add new" items screen. But the selected date from 'Show Date Chooser' is not showing correctly in the form, it shows the earlier date of selected date.My code is as follows,
DateTimeItem dateItemDateOrdered = new DateTimeItem("dateOrdered", "DATE ORDERED");
dateItemDateOrdered.setWidth(130);
DateTimeItem dateItemDateWanted = new DateTimeItem("dateWanted", "DATE WANTED");
dateItemDateWanted.setWidth(130);
I use the date chooser in tabs, listgrids similarly, but there was no issue on those places.
Comment