如何在griffon中使用我自己的swing类的子类

时间:2013-01-22 20:52:51

标签: swing groovy jtable griffon

我需要使用我自己的JTable子类,但不确定如何在View中使用它,无法找到它。

我必须在这里使用什么代替表:

scrollPane (constraints: "growx, growy, gapy 0:0:0, gapx 0:0:0") {
                table(id: 'thesublcass') {
                    tableFormat = defaultTableFormat(columns: model.columns)
                    ...
                }
}

编辑:这非常有效,感谢两者。

  

table(new YourClass())

1 个答案:

答案 0 :(得分:2)

您应该可以使用widget,如本页底部所示:

http://groovy.codehaus.org/SwingBuilder+with+custom+widgets+and+observer+pattern

即:

            widget( new YourClass(), id: 'thesublcass') {
                tableFormat = defaultTableFormat(columns: model.columns)
                ...
            }