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