I have created my RootLayout inside of JavaFX Sceene builder. It containst BorderPane and in it's center TabPane with three tabs. On first tab I want to have WebView. My RootController contains:
@FXML
private WebView webview;
@FXML
private WebEngine webengine;
I have conected my WebView in RootLayout.fxml by it fx:id with webview variable. My initialize method in RootLayoutController is (RootLayout controler is defined in fxml file):
@FXML
private void initialize() {
this.webview = new WebView();
this.webengine = this.webview.getEngine();
this.webengine.load("http://www.oracle.com/us/products/index.html");
}
But page is not loading. Any suggestions ?