In JavaFX how to add combobox with data in table view
问题 I have tried a lot but not able to populate all values in the data base into my combo box table cell. Controller.java public class controller { GetConnection gc = new GetConnection(); PreparedStatement pst; ResultSet rs; Statement st; private ObservableList<Users> datas = FXCollections.observableArrayList(); public controller() { } @FXML private TableView<Users> table; @FXML private TableColumn<Users, String> c1; @FXML private void editable() { List<String> names = new ArrayList<String>();