<@U66EJ2C07> have you seen sortedfilteredlist? <ht...
# tornadofx
c
@littlelightcz have you seen sortedfilteredlist? https://github.com/edvin/tornadofx/wiki/Utilities
👍 1
l
Thank you, I haven't 🙂. Anyway I see this uses a bit different data flow, but I will try it. BTW as it is stated in the example:
data.filterWhen(textProperty(), ...
, today I've also noticed that
ObservableList
has
.filtered {}
extension, which is kind of close to what I need (but not completely), so I was thinking that something like
.filteredWhen(prop1, prop2, ...) { ... }
could be added as well (if possible) so that the typical "chained" workflow can be used and then the final prop./list can be directly passed to e.g. a
TableView
without the need to store the TableView into a value. (another proposal for @edvin)