this is probably been answered before, quite possibly many times.
Totally fail to understand what i look for, and my java experience is about few weeks
I try to build application in javafx, I use scenebuilder, and i want table, some kind of grid component, which size i can declare dynamically.
Failed to figure how to add row or column or populate table with data: http://clip2net.com/s/jpGKh0
So, i went to scenebuilder generated Controller code, and it says:
@FXML
private TableColumn<?, ?> col2;
@FXML
private TableView<?> table;
@FXML
private TableColumn<?, ?> col1;
This <?>
or <?,?>
declarations.. what is it? How to use table, col1, col2 to bring a live to table?