Hello,
I am using smartgwt 2.5 downloaded from the nightlies around the beginning of June.
I had previously posted that the dateDisplayFormat didn't seem to be working in this post http://forums.smartclient.com/showthread.php?t=13421 which you fixed.
Everything has been working fine until I downloaded the recent version in response to something else. Since then all my dates have reverted to the MM/DD/YYYY format.
The code is still the same and hasn't changed...
Can you please help?
Regards
Jeni
I am using smartgwt 2.5 downloaded from the nightlies around the beginning of June.
I had previously posted that the dateDisplayFormat didn't seem to be working in this post http://forums.smartclient.com/showthread.php?t=13421 which you fixed.
Everything has been working fine until I downloaded the recent version in response to something else. Since then all my dates have reverted to the MM/DD/YYYY format.
The code is still the same and hasn't changed...
Code:
final DateRangeItem rangeItem = new DateRangeItem("transactionDate");
rangeItem.setValue(dateRange);
rangeItem.setWidth(180);
rangeItem.setShowTitle(false);
rangeItem.setAllowRelativeDates(true);
rangeItem.setDateDisplayFormat(DateDisplayFormat.TOEUROPEANSHORTDATE);
rangeItem.setDateFormatter(DateDisplayFormat.TOEUROPEANSHORTDATE);
Regards
Jeni
Comment