Manuel Mauky

Results 148 comments of Manuel Mauky

Hi, the talk wasn't recorded as video. I don't know if the audio was recorded. I've uploaded the slides to the JavaOne Speaker Portal so I think they will be...

Hi, you can also send PRs if you like. I'm not that active anymore in JavaFX development but I would still review and merge PRs.

Hi, yes this would be cool for me. I'm happy as long as I don't have to bother with the library. If it exists without me noticing it's ok for...

Hi Peti, in general I think redux is the better approach compared to mvvm. However, it depends on the plattform and programming language. For Java as programming language and JavaFX...

You are right. I also like Kotlin for this. I know [reduxfx](https://github.com/netopyr/reduxfx) which I find really interesting but lacking some features like FXML support yet. And I've also written a...

Given the following example files: - MainView.java - MainViewModel.java - MainView.fxml - SubView.java - SubViewModel.java - SubView.fxml where `SubView.fxml` is included into `MainView.fxml` via `fx:include`. When I understand you correctly...

Maybe this can be implemented with Java 9 [LoadListener](http://download.java.net/java/jdk9/jfxdocs/javafx/fxml/LoadListener.html)

The `onViewRemoved` method is listening to when the View is removed from the JavaFX scene-graph. Basically we use a listener on the [sceneProperty](https://docs.oracle.com/javase/8/javafx/api/javafx/scene/Node.html#sceneProperty) of `Node`. For some reason this property...

No, your code also works fine. The advantage of your code is that you don't depend on strange behavior of JavaFX (like not resetting the scene). The disadvantage is that...