blob: 63e664be364c967cada9d30772ec76887b81026d [file] [log] [blame]
groovy.swing.SwingBuilder.build {
frame(id: 'f', title: 'Groovy Blogs', visible: true) {
scrollPane {
table {
tableModel(list: items) {
cols.each { col ->
closureColumn header: col, read: { it[col].text() }
}}}}}
f.pack()
}
-----
groovy.swing.SwingBuilder.build {
frame(id: 'f', title: 'Groovy Blogs', visible: true) {
scrollPane {
table {
tableModel(list: items) {
cols.each { col ->
closureColumn header: col, read: { it[col].text() }
} } } } }
f.pack()
}