GWT DatePicker在2.5.1中更改

时间:2013-07-26 19:47:52

标签: java gwt

背景

在文件中的GWT 2.5.0 中:com.google.gwt.i18n.client.impl.cldr.DateTimeFormatInfoImpl_en将getFirstDayOfWeek定义为:

@Override
public int firstDayOfTheWeek() {
    return 0;
}

这会导致日历呈现为 SMTWTFS

但是在更新 GWT 2.5.1 中,这已更改为

@Override
public int firstDayOfTheWeek() {
   return 1;
}

使日历呈现为 MTWTFSS


问题

有人知道为什么默认值会发生变化吗?我很高兴回去更改所有日历!

是否有人知道我可以更改的语言环境,以便日历呈现为SMTWTFS?我不想创建子类,覆盖firstDayOfTheWeek()并更改所有日历。

1 个答案:

答案 0 :(得分:1)

我不准备测试此解决方案,但您可以尝试使用GWT Deferred Binding。如果它有效,那么好处是您不必更改大量代码。

1:创建一个新类并覆盖firstDayOfTheWeek()方法。

public class CustomDateTimeFormatInfoImpl_en extends DateTimeFormatInfoImpl_en {

    @Override
    public int firstDayOfTheWeek() {
        // make Sunday my first day of the week
        return 0;
    }
}

2:在gwt.xml模块文件中添加延迟绑定指令。

<replace-with class="com.example.sample.CustomDateTimeFormatInfoImpl_en">
    <when-type-is class="com.google.gwt.i18n.client.impl.cldr.DateTimeFormatInfoImpl_en"/>
</replace-with>

希望这有助于或至少引导您朝着正确的方向前进。