I'm learning Griffon framework and I have the following problem:
mvcGroupInit isn't invoked when I call buildMVCGroup(...) - should I explicitly invoke it after this method call? (What about model and view injection then?)
My app:
in view ('main app' mvc):
widget(buildMVCGroup([base:new MyClass(), queue:model.queue],
"button", "1").view.buttonView)
in ButtonController (never invoked):
void mvcGroupInit(Map args) {
println "############MVCGroupInit Button"
// this method is called after model and view are injected
model.base = args.base
model.queue = args.queue
}
Or please suggest how I should build and init MVC groups?
EDIT: Griffon 0.9.4