blob: babef8dc15dd5a667d3355c32f726cf152bf9362 [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()
}