GroovyFX:如何将集合绑定到表以进行动态更新?

时间:2015-11-11 16:48:00

标签: tableview groovyfx

我想将一组项绑定到GroovyFX中的TableView,但是在调用tableView()之后我没有更新表。

我可以在JavaFX中更新表,但不能在GroovyFX中更新。我想有一些绑定缺失了。

代码是

import static groovyx.javafx.GroovyFX.start

import groovyx.javafx.beans.FXBindable;
import javafx.scene.control.TableView

class Command {

    @FXBindable String command
    @FXBindable String target
    @FXBindable String value
}

start{

TableView scriptTable
ObservableList<Command> script = []

stage(title: 'Example for Stackoverflow', visible: true) {

    scene(fill: groovyblue, width: 600, height: 250) {
        borderPane{
            center(align: CENTER){

                script.add( new Command(command: "a", value: "b", target: "c") )

                scriptTable = tableView(items: script, editable: true){
                    tableColumn(text: "Command", property: "command"){}
                    tableColumn(text: "Target", property: "target"){}
                    tableColumn(text: "Value", property: "value"){}
                }

                script.add( new Command(command: "d", value: "e", target: "f") )
            }
        }
    }
}

在这个例子中,我得到一行“a,b,c”。 enter image description here

关于如何在创建数据后使用数据(“d,e,f”)更新表格,我们对此表示赞赏。

非常感谢。

1 个答案:

答案 0 :(得分:0)

我认为其中一个问题可能是这行代码:

ObservableList<Command> script = []

因为def someList = []def someList = new ArrayList()的Groovy。

相反,您可能希望使用以下代码对其进行初始化:

ObservableList<Command> script = FXCollections.observableArrayList()

创建实际的ObservableList