(Automatically generated from BeanInfo)
A groovy.model.DefaultTableColumn is returned, unless the user passes in a subclass of DefaultTableColumn as the value argument, in which case the value argument is returned.
table {
tableModel(list:listOfItems) {
closureColumn(
header:'Location',
read: {row -> return row.location},
write: {row, newValue -> println "write: $row new value: $newValue"}
}
}
)
|