My table contains a ComboBoxTableCell
with setComboBoxEditable(true)
. I need to obtain the text typed into the editor of the combo box.
A regular ComboBox contains getEditor().getText()
method to achieve this. But how can I achieve this in ComboBoxTableCell
since it's lacking getEditor()
?