I am trying to have a table that displays data that the user inputs as well as edit the data. I have figured out how to do this with text (ie, they can edit the name of some
Unfortunately SelectionCell stores options in a private List and there are no methods to manipulate this after you have set them in constructor.
Fortunately, SelectionCell is a fairly simple class. Just make your own (renamed) copy and add addOption(..)
/removeOption(..)
methods to manipulate List<String> options
.