Hi,
I am trying to reload stylesheets from url as follows:
myGridPane.getStylesheets().add("http://server:port/GridPaneStyle.css");
...
...
com.sun.javafx.css.StyleManager.getInstance().reloadStylesheets(scene);
com.sun.javafx.css.StyleManager.getInstance().updateStylesheets(scene);
But even if I update and save my CSS files, reloadStylesheets and updateStylesheets do not change anything...
Any bug known for those methods?
Thanks.