| A DropDownDateBox is a DropDown that contains
a DateBox .
Example:
final Dialog dlg = new Dialog("DateBox Test");
dlg.setBounds(10, 10, 320, 240);
DropDownDateBox dd = new DropDownDateBox();
dd.setBounds(10, 10, 200, 20);
dlg.getChildren().add(dd);
dlg.setVisible(true);
Keyboard Navigation:
KEY |
RESPONSE |
NOTE |
Down Arrow |
Drops the DateBox down. |
Only if the component has focus. |
Esc |
Closes the DateBox |
Only if the component has focus. |
See DateBox for additional keyboard support.
author: Ted C. Howard |