In 13 (currently on 13.0-d20210130), the DateChooser ignores calls to setData.
test case:
The date in question does not get selected in the chooser.
Confirmed working in 12.
test case:
Code:
public void onModuleLoad() {
DateChooser begin = new DateChooser();
Date beginDate = new Date();
CalendarUtil.setToFirstDayOfMonth(beginDate);
GWT.log("setting begin to: " + beginDate);
begin.setData(beginDate);
RootPanel.get().add(begin);
}
Confirmed working in 12.
Comment