And second, let's say I have an `ObservableList` (...
# tornadofx
l
And second, let's say I have an
ObservableList
(A) and
SimpleStringProperty
and I want to create another
ObservableList
(B) which will basically filter the list A according to filter String inside
SimpleStringProperty
, both when: List A changes or filter changes. I tried to do it using
objectBinding {}
, but it didn't work (I think it triggered only once during initialization, but never after). I found a workaround how to make it work, but is there some nice/proper way of how to do this? (E.g. how to combine
ObservableList
with
ObservableValue
and yield another
ObservableList
as a result)