different combobox for different row in jtable
I know how to use combo box as editor in jtable based on sun java tutorial. But it is per column. So every row has the same combo box in that column. What I want to achieve is like this:
This jtable has 3 column, id, name, gun.
Row 1 has { id => 1, name => 'donald', gun => combo box [ 'bomb', 'laser' ] }
Row 2 has { id => 2, name => 'mickey', gun => combo box [ 'fire gun', 'knife'] }
Is that possible? Thank you.

