About 1,100 results
Open links in new tab
  1. How to Use Combo Boxes (The Java™ Tutorials - Oracle

    The combo box fires an action event when the user selects an item from the combo box's menu. See How to Write an Action Listener, for general information about implementing action listeners. Combo boxes also generate item events, which are fired when any of …

  2. JComboBox (Java Platform SE 8 ) - Oracle

    A component that combines a button or editable field and a drop-down list. The user can select a value from the drop-down list, which appears at the user's request. If you make the combo box editable, then the combo box includes an editable field into which the user can type a value. Warning: Swing is not thread safe.

  3. 16 Combo Box (Release 8) - Oracle

    This chapter explains how to use combo boxes in your JavaFX application. It discusses editable and uneditable combo boxes, teaches you how to track changes in the editable combo boxes and handle events on them, and explains how to use cell factories to alter the default implementation of a combo box.

  4. Using JavaFX UI Controls: Combo Box - Oracle

    This chapter explains how to use combo boxes in your JavaFX application. It discusses editable and uneditable combo boxes, teaches you how to track changes in the editable combo boxes and handle events on them, and explains how to use cell factories to alter the default implementation of a combo box.

  5. JDK 22 Documentation - Home - Oracle

    Java Components page. Looking for a different release? Other releases. Overview. Read Me ; Release Notes ; What's New ; Migration Guide ; Download the JDK ; Installation Guide ; Version-String Format ; Tools. JDK Tool Specifications ; JShell User's Guide ; JavaDoc Guide ; Packaging Tool User Guide ; Language and Libraries.

  6. BasicComboBoxUI (Java SE 20 & JDK 20) - Oracle

    The combo box is a compound component which means that it is an aggregate of many simpler components. This class creates and manages the listeners on the combo box and the combo box model. These listeners update the user interface in response to changes in the properties and state of the combo box.

  7. ComboBox (Java SE 9 & JDK 9 ) - docs.oracle.com

    ComboBox allows for the items list to contain elements of any type, including Node instances. Putting nodes into the items list is strongly not recommended . This is because the default cell factory simply inserts Node items directly into the cell, including in …

  8. ComboBox (JavaFX 8) - Oracle

    ComboBox allows for the items list to contain elements of any type, including Node instances. Putting nodes into the items list is strongly not recommended . This is because the default cell factory simply inserts Node items directly into the cell, including in …

  9. ComboBoxModel (Java Platform SE 8 ) - Oracle

    A data model for a combo box. This interface extends ListDataModel and adds the concept of a selected item . The selected item is generally the item which is visible in the combo box display area.

  10. ComboBoxBase (JavaFX 8) - Oracle

    A ComboBox has a value property that represents the current user input. This may be based on a selection from a drop-down list, or it may be from user input when the ComboBox is editable. An editable ComboBox

Refresh