Do I understand correctly that there is no way to ...
# tornadofx
r
Do I understand correctly that there is no way to map
List<T>
from data class to
ListProperty<T>
in
ItemViewModel
, as the latter expects
ObservableList<T>
?
Sorry for the late reply and thanks for your answers. So the answer is (kind of) this:
bind { SimpleListProperty(item?.params?.observable() ?: FXCollections.emptyObservableList()) }