Serializable, CellEditor, TableCellEditor, TreeCellEditorpublic class ComboBoxCellEditor extends DefaultCellEditor
This is a cell editor that can be used when a combo box (that has been set
up for automatic completion) is to be used in a JTable. The
DefaultCellEditor won't work in this
case, because each time an item gets selected it stops cell editing and hides
the combo box.
Usage example:
JTable table = ...;
JComboBox comboBox = ...;
...
TableColumn column = table.getColumnModel().getColumn(0);
column.setCellEditor(new ComboBoxCellEditor(comboBox));
DefaultCellEditor.EditorDelegatechangeEvent, listenerListclickCountToStart, delegate, editorComponent| Constructor | Description |
|---|---|
ComboBoxCellEditor(JComboBox comboBox) |
Creates a new ComboBoxCellEditor.
|
addCellEditorListener, fireEditingCanceled, fireEditingStopped, getCellEditorListeners, removeCellEditorListeneraddCellEditorListener, removeCellEditorListenercancelCellEditing, getCellEditorValue, getClickCountToStart, getComponent, getTableCellEditorComponent, getTreeCellEditorComponent, isCellEditable, setClickCountToStart, shouldSelectCell, stopCellEditingpublic ComboBoxCellEditor(JComboBox comboBox)
comboBox - the comboBox that should be used as the cell editor.Copyright © 2018. All rights reserved.