When setting collapsible to false on a titled pane inside a expandedPane listener of an accordion, the contents of the titled pane are not shown. This is a issue discussed on stackoverflow:
http://stackoverflow.com/questions/13606198/using-platform-runlater-to-disable-collapsing-an-accordion-in-javafx/14309318#comment20382678_14309318
There is a solution to set the collapsible property inside a new Platform.runLater();
The documentation says, that it's a bad practice to modify the observable inside the listener. Does it also apply to changing only the properties of this observable?
http://stackoverflow.com/questions/13606198/using-platform-runlater-to-disable-collapsing-an-accordion-in-javafx/14309318#comment20382678_14309318
There is a solution to set the collapsible property inside a new Platform.runLater();
The documentation says, that it's a bad practice to modify the observable inside the listener. Does it also apply to changing only the properties of this observable?