Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

so I've got a number of JComboBox's which make up a JTable. My question is; without having access to these JComboBox's directly, how can I obtain them from the JTable? Below is how I've put the JComboBoxes into the JTable...

TableColumn columnModel = table.getColumnModel().getColumn(i);
columnModel.setCellEditor(new DefaultCellEditor(combo));

...So I would imagine that you can return them by doing something like...

JComboBox retrievedDropDowns = (JComboBox)table.getColumnModel().getColumn(1).getCellEditor();

But apparently not...

Am I far off?

Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

Try:

JComboBox retrievedDropDowns = (JComboBox)table.getColumnModel().getColumn(i).getCellEditor().getComponent();
share|improve this answer
The method I've got is 'getTableCellEditorComponent()' which seems to have done it... So I wasn't far off at all LOL... Thanks for your help! – J Smith Feb 11 at 14:36

If you put a DefaultCellEditor in your columnModel then it will return a DefaultCellEditor not a JComboBox.

But you can use DefaultCellEditor.getComponent() to get the inner editorComponent.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.