Sven

Results 279 comments of Sven

> For simple dialogs (or where the JavaFx Dialog API) is leveraged, could the Dialog not implement JavaView directly and be loaded by the ViewLoader (currently only supports Parent)? Then...

> How do you create complex dialogs/windows with mvvmFX. I think this is the question we are addressing here with the DialogHelper/WindowHelper. Maybe we can even use the official dialogs...

> Dialog Closing Rules > > It is important to understand what happens when a Dialog is closed, and also how a Dialog can be closed, especially in abnormal closing...

> When using the normal show method you have to take care for getting the user input asynchronously even if the whole process (showing a dialog, waiting till the user...

The more we discuss here, the more I like the approach of the `showAndWait` method. Returning an `Optional` would be nice to have. But the more complex I make the...

This topic hasn't been touched by a year now. I did some research and testing with some bare bones code. I couldn't get Guice to work with the @Inject annotation....

Sounds interesting, is he recreating the FXMLLoader and implementing his own parsing process? In which way is the FXMLLoader limiting the usage of @Inject? I am quite slow on the...

> For CDI you can create "producer methods" which can be used to provide instances for specific classes to the DI framework so it doesn't create them by itself. Do...

So basically it would be possible to drop @InjectViewModel for @Inject but would remove the benefit of doing some pre-injection operations like generic type insurance, am I right?

Doesn't seem to be worth it. Is there another way we could provide a custom instance. For example, technically, we could let DI inject a ViewModel and overwrite afterwards with...