I have an issue trying to populate the table view from my SQLite DB. When i try to link my fx id's with my controller i get the error:
Cannot set javafx.Scene.control.TableColumn to field 'col_date'
Controller:
@FXML public TableView QDBView;
@FXML public TableColumn col_date;
@FXML public TableColumn col_opid;
FXML:
<TableView fx:id="QDBView" layoutY="27.0" prefHeight="740.0" prefWidth="1100.0">
<columns>
<TableColumn fx:id="col_date" prefWidth="75.0" text="Date" />
<TableColumn fx:id="col_opid" prefWidth="75.0" text="UID" />
</columns>
</TableView>