Another small experiment with Griffon, but this time there's a
problem, one that I've had a couple of times. First, the
code.
Here's the model:
import groovy.beans.Bindableclass App1Model { @Bindable String name = "James"}
Here's the controller:
class App1Controller { def model def view def saveName = { evt -> model.name = view.nameField.text }}
Here's the view:
build(App1Actions)application(title: 'App1', size:[320,480], location:[50,50], pack:true,...