Hi, Is it possible to use the TornadoFX DSL to pr...
# tornadofx
j
Hi, Is it possible to use the TornadoFX DSL to provide the built node as content for org.controlsfx.control.PopOver? My code looks like:
Copy code
class MainWorkspace : Workspace(navigationMode = NavigationMode.Tabs) {
...
init {
...
private val popOver: PopOver = PopOver(
            label {
                text = "This allows the configuration of the:"
            }
    ).apply {
        fadeInDuration = Duration.millis(700.0)
        fadeInDuration = Duration.millis(700.0)
    }
…
}
… but the content of the popOver is displayed in the Workspace, which looking at the source code is normal. Moreover, when the content is displayed in the Workspace, somehow, suddenly, the content of the popOver is blank. For such cases and similar should I fallback to vanilla JavaFX. I would like to somehow use the TornadoFX UI DSL type-safe builders but been able to pass another parent of the generated UI. http://fxexperience.com/controlsfx/features/#popover