according to the guide for the save action, this i...
# tornadofx
a
according to the guide for the save action, this is what I have in my fragment. Perhaps I need a listener?
Copy code
button("Save") {
                    enableWhen(model.dirty)
                    action {
                        save()
                    }
                }