Please post complete test code when submitting a bug as it make it much easier to replicate the issue.
For example:
Code:
public void onModuleLoad() {
FormPanel fp = new FormPanel();
DateField df = new DateField();
df.addListener(Events.Change, new Listener<FieldEvent>() {
public void handleEvent(FieldEvent p_event) {
Window.alert("change: " + p_event.value);
}
});
fp.add(df);
RootPanel.get().add(fp);
}
The change events fires when the field is blurred, not when the user selects a value from the date picker. I did find a bug. In some browsers, if you did not put focus on the text field before clicking the trigger the change event did not fire. This is fixed in SVN.