So my understanding is that since this view does n...
# tornadofx
j
So my understanding is that since this view does not actually modify the model, we can peek at the underlying model directly instead of going through the ViewModel?
a
The whole point of mvvm/mvp/etc do not let view interact with the model directly. All communications must go through "proxy" -- VM/Presenter. It gives you better modularization and separation of concerns.
👍 1