I have a nested column table in javafx. Table columns and row created dynamically. Table values are not consistently filled. Some cells are empty.
I need to know is there a way to set values cell by cell through a loop or something.
For a example, this is my column data model:
TableColumn<RoomRatesTableModel, String> outerColumn1 = new TableColumn<>("Y");
innerColumn3.setCellValueFactory(new PropertyValueFactory<RoomRatesTableModel, String>("gender"));
I want to add data to table view without using the data model, is it possible?