Threaded View
-
20 Apr 2012 9:06 AM #1
Blur Event not fired after Date Picking
Blur Event not fired after Date Picking
Steps to reproduce the problem:Code:public void onModuleLoad() { final DateField df = new DateField(); TextButton tb = new TextButton("Test"); tb.addSelectHandler(new SelectHandler() { public void onSelect(SelectEvent event) { System.out.println(df.getValue()); } }); RootPanel.get().add(df); RootPanel.get().add(tb); }
- Pick a Date by the DatePicker
- Click directly on the TextButton
Steps for correct behaving:
- Pick a Date by the DatePicker
- Use Tab key to move focus from the DateField to the TextButton
- Click the TextButton
Thanks in advance
Looks like we can't reproduce the issue or there's a problem in the test case provided.


Reply With Quote