SmartGWT: Pro, 2012-06-10 nightly
FF: 12
Chrome: 19
GWT: 2.4
Not a functional bug, but just a little unsightly: when using a DateItem with the format DMY is used instead of the default MDY order, the spacing between the D and M SelectItems is gone.
From the screenshots you can see that the spacing between M and D came from the D SelectItem, as now the spacing of the FormItems no longer line up correctly (seen from the alignment with the Gender SelectItem)
All there is to it is:
FF: 12
Chrome: 19
GWT: 2.4
Not a functional bug, but just a little unsightly: when using a DateItem with the format DMY is used instead of the default MDY order, the spacing between the D and M SelectItems is gone.
From the screenshots you can see that the spacing between M and D came from the D SelectItem, as now the spacing of the FormItems no longer line up correctly (seen from the alignment with the Gender SelectItem)
All there is to it is:
Code:
cmbDOB.setSelectorFormat(DateItemSelectorFormat.DAY_MONTH_YEAR);
Comment