I have empty TableModel. When I set this model to JTable it hasn't rows. I want to create one empty row, where user can select value in combo box editor. If user selects not-null value, then second row added and I have one object in model. How can I add empty row, when there is not object for this row in model?
feedback
|
|
The TableModel is your friend: implement it's setValueAt method to add a row after setting the value. Here's an example for doing so by subclassing DefaultTableModel:
| |||||||
feedback
|
that isn't empty row, you can add null value to the JTable Cell, more in the tutorial about JTable and JComboBox as an Editor, and examples here | |||||
feedback
|