This option calls the function calendarComboBox.setEnabled(enabled).
The code below shows how to do this: 
<CODE>
CalendarComboBox calendarComboBox = new CalendarComboBox();
//    Enable the combo box
calendarComboBox.setEnabled(true);
//    Disable the combo box
calendarComboBox.setEnabled(false);
</CODE>