Join Slack
Powered by
You are not using the ObservableList. You are chan...
# tornadofx
s
SiebelsTim
08/07/2018, 11:28 AM
You are not using the ObservableList. You are changing the contents of the property containing the list. The combobox never knows about the
treatmentList
property, therefore it cannot observe on it. Try making
treatmentList
an
ObservableList<String>
. Then, you can do
treatmentList.setAll(*it)
in `runAsync`s
ui
block.
Open in Slack
Previous
Next