We have several JavaFX views created with the help of scenebuilder. Their components get injected in controller classes through the FXMLLoader
, like for example a TreeTableView
. Now I'd like to override a specific method of TreeTableView
, but since it gets initialized by FXMLLoader
, I am not sure how to approach this.
Is there any way to override a method of TreeTableView
injected by FXMLLoader without creating and importing a new control to scenebuilder?