Java Beginners: connecting and storing three types of informations to work with them as a package?
Informations to collect, one each per user entry: A date (Datepicker) A String (Textfield, a name in this case) An option from a limited pool (Combobox) In the end, I want to check (get suggestions) on which dates all options from the limited pool are selected at least once and show the content of the text field input, too. My idea was to put the input in a HashSet. Date to string works, Textfield is a string anyways. But the Combobox refuses cooperation. It is fairly unimpressed by get Value, getSelectedItem and doesn't accept a simple toString. I tested most of the options I found on this via Google research but none of them work. The options in the Combobox are taken from an Array list, which contains simple Strings. (for human purposes, each item represents a human "to do task") I'm open for ideas/strategies for the overall task, since I am not sure it's a problem of the Combobox or if the general approach might create this problem. Thank you :) Note: it seems J-javastuff and JavaFX don't mix