all other buttons work and are connected correctly but the done button does not do anything when i finish adding a movie. as far as i know i have it linked right and it has the correct fx:id but i cannot figure out why it wont do anything. when I add the code
"< Button fx:id= "doneButton" text="Done" onAction="#completeMovieAddingView" />"
to the fmxl file it gives errors. here is the fmxl code I have currently for the done button that doesnt cause errors:
<Button fx:id="doneButton" onAction="#completeMovieAddingView" text="Done" BorderPane.alignment="CENTER">
<BorderPane.margin>
<Insets bottom="15.0" />
</BorderPane.margin>
</Button>
the movie adding controller code and other files are as the lab said