I have a ListGrid that has a few fields that show incorrect times.
In the ListGrid I see some showing correctly and some don't but no idea
what would cause that issue, when data is sent to the backend for saving it's correct it just shows incorrectly.
Database date(is whatever) and time is 00:00:00 but view shows the column value as 01:00:00 on some records and correctly on others.
GWT 2.0.3
SmartGWT 2.1
Database : MySQL (on local machine)
OS : Win7 64bit
In the ListGrid I see some showing correctly and some don't but no idea
what would cause that issue, when data is sent to the backend for saving it's correct it just shows incorrectly.
Database date(is whatever) and time is 00:00:00 but view shows the column value as 01:00:00 on some records and correctly on others.
GWT 2.0.3
SmartGWT 2.1
Database : MySQL (on local machine)
OS : Win7 64bit
Code:
DataSourceDateTimeField dateTimeField = new DataSourceDateTimeField("effdattim"); dateTimeField.setTitle("Effective Date-Time"); dateTimeField.setCanEdit(true); addField(dateTimeField);
Comment