模型更改后更新表格内容

时间:2018-02-09 11:57:24

标签: tornadofx

我正在测试tornadofx框架(主要是复制粘贴示例),我有一个奇怪的问题,表格内容在编辑后没有更新。我看到了

的内容
val persons = FXCollections.observableArrayList<Person>()
val selectedPerson = PersonModel()

正在改变,但观点不是。正如我从tornadofx github那里得到的例子,我非常困惑。

这是课程

class Person(id: Int, name: String) {
    var id by property(id)
    fun idProperty() = getProperty(Person::id)

    var name by property(name)
    fun nameProperty() = getProperty(Person::name)

}

class PersonModel : ItemViewModel<Person>() {
    val id = bind { item?.idProperty() }
    val name = bind { item?.nameProperty() }
}

class PersonController : Controller() {
    val persons = FXCollections.observableArrayList<Person>()
    val selectedPerson = PersonModel()

    init {
        // Add some test persons for the demo
        persons.add(Person(42, "John Doe"))
        persons.add(Person(43, "Jane Doe"))
    }
}

class MainWindow : View("FX Test") {

    private val controller: PersonController by inject()

    override val root = borderpane {

        center = tableview(controller.persons) {

            column("ID", Person::id)
            column("Name", Person::name)
            bindSelected(controller.selectedPerson)

            contextmenu {
                item("Edit", KeyCombination.keyCombination("F3")).action {

                    dialog("Client editor") {

                        field("Name") {
                            textfield(controller.selectedPerson.name)
                        }

                        buttonbar {
                            button("Save") {
                                setOnAction {
                                    controller.selectedPerson.commit()
                                    close()
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

根据文档,在控制器提交后,视图会自动更新。

1 个答案:

答案 0 :(得分:1)

您正在将表列绑定到getter而不是observable属性,因此他们无法知道数据何时更改。只需将列构建器指向属性:

column("ID", Person::idProperty)
column("Name", Person::nameProperty)